Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archinstall.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index ae945e5d..3cf23a2b 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -564,7 +564,8 @@ def cleanup_args(*positionals, **kwargs):
if not args['unattended']:
if 'input_redirect' in kwargs:
args[key] = kwargs['input_redirect'](key)
- args[key] = input(f'Enter a value for {key}: ')
+ else:
+ args[key] = input(f'Enter a value for {key}: ')
else:
args[key] = random_string(32)
elif args[key] == '<RND_STR>': args[key] = random_string(32)