Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/only_hd.py
diff options
context:
space:
mode:
authorWerner Llácer <wllacer@gmail.com>2022-02-07 01:58:33 +0100
committerGitHub <noreply@github.com>2022-02-07 01:58:33 +0100
commitef558fdb4559d113f55c8a9df2ebefda9bd25ae5 (patch)
tree0ccb70e5e7e1f4fcb6e595c4e2e3b1ea8b6d8f0a /examples/only_hd.py
parent20e23dcecd2bb4eeb72d324c33a29685c0241035 (diff)
Solving some issues after merging flexible_menu (#948)
* Correct definition of btrfs standard layout * Solve issue #936 * make ask_for_a_timezone as synonym to ask_timezone * first batch of changes due to the last merges selector.text is a call to selector.menu_text A number of Generalmenu methods reappeared in their old version at Global * disk encryption password menu option restored
Diffstat (limited to 'examples/only_hd.py')
-rw-r--r--examples/only_hd.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/only_hd.py b/examples/only_hd.py
index cc60a3b9..c0364cd1 100644
--- a/examples/only_hd.py
+++ b/examples/only_hd.py
@@ -28,11 +28,6 @@ class OnlyHDMenu(archinstall.GlobalMenu):
""" overloaded method """
def check(s):
return self.option(s).has_selection()
-
- # Get disk encryption password (or skip if blank)
- if archinstall.arguments.get('!encryption-password', None) is None:
- if passwd := archinstall.get_password(prompt=str(_('Enter disk encryption password (leave blank for no encryption): '))):
- archinstall.arguments['!encryption-password'] = passwd
_, missing = self.mandatory_overview()
if check('harddrives'):