Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/user_interaction.py
diff options
context:
space:
mode:
authorDidr <Didr@users.noreply.github.com>2021-03-29 10:16:20 +0200
committerGitHub <noreply@github.com>2021-03-29 10:16:20 +0200
commitf452dc695a6a2929ecf796f1730af3b683b1a449 (patch)
tree81c3664343e24e043468c82ab708890c8b348bc6 /archinstall/lib/user_interaction.py
parent5e3a1523644abe3dc0c06ff17dbaeafb5a3cbda4 (diff)
Fix spelling error in filesystem choice
Fixes a simple spelling error when the user is asked to select a filesystem. "Select which filesystem your main partition should use (by number **of** name)" should be **or**.
Diffstat (limited to 'archinstall/lib/user_interaction.py')
-rw-r--r--archinstall/lib/user_interaction.py2
1 files changed, 1 insertions, 1 deletions
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):