index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-03-29 08:21:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 08:21:06 +0000 |
commit | 70480d4681d40ab9a296f5dba1e40f200862d4e9 (patch) | |
tree | 81c3664343e24e043468c82ab708890c8b348bc6 /archinstall/lib/user_interaction.py | |
parent | 5e3a1523644abe3dc0c06ff17dbaeafb5a3cbda4 (diff) | |
parent | f452dc695a6a2929ecf796f1730af3b683b1a449 (diff) |
-rw-r--r-- | archinstall/lib/user_interaction.py | 2 |
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py index a79b4847..a782197e 100644 --- a/archinstall/lib/user_interaction.py +++ b/archinstall/lib/user_interaction.py @@ -141,7 +141,7 @@ def ask_for_main_filesystem_format(): 'f2fs' : 'f2fs' } - value = generic_select(options.values(), "Select which filesystem your main partition should use (by number of name): ") + value = generic_select(options.values(), "Select which filesystem your main partition should use (by number or name): ") return next((key for key, val in options.items() if val == value), None) def generic_select(options, input_text="Select one of the above by index or absolute value: ", sort=True): |