Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-11-05 22:03:24 +0100
committerAnton Hvornum <anton@hvornum.se>2021-11-05 22:03:24 +0100
commita5730dec856d4265667283e9ef8b9227db069a84 (patch)
treed725921bde3f0d7986391692ac329a53f813dc0c /archinstall/lib
parentf1422d955fc793886c7f7b0f3906f8a2169d8d9e (diff)
Misspelled variable name
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/user_interaction.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 84eefdc0..e62d8c6c 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -328,6 +328,7 @@ class MiniCurses:
def ask_for_swap(prompt='Would you like to use swap on zram? (Y/n): ', forced=False):
return True if input(prompt).strip(' ').lower() not in ('n', 'no') else False
+
def ask_for_superuser_account(prompt='Username for required superuser with sudo privileges: ', forced=False):
while 1:
new_user = input(prompt).strip(' ')