Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-22 21:00:11 +0200
committerAnton Hvornum <anton@hvornum.se>2021-05-22 21:00:11 +0200
commita9efdac61581844e53c80d214ba88b370c2d7ee6 (patch)
treec31646427ee25affe51be9c8ebe7455b1945dd90
parent1bc218b2e1b4844750dc5573a5db1034c51841c5 (diff)
Fix issue from language selection.
-rw-r--r--examples/guided.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 7d033eaf..a25f1b3b 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -54,13 +54,13 @@ def ask_user_questions():
if not archinstall.arguments.get('sys-language', None) and archinstall.arguments.get('advanced', False):
archinstall.arguments['sys-language'] = input("Enter a valid locale (language) for your OS, (Default: en_US): ").strip()
archinstall.arguments['sys-encoding'] = input("Enter a valid system default encoding for your OS, (Default: utf-8): ").strip()
+ archinstall.log("Keep in mind that if you want multiple locales, post configuration is required.", fg="yellow")
- if not archinstall.arguments['sys-language']:
- archinstall.arguments['sys-language'] = 'en_US'
- if not archinstall.arguments['sys-encoding']:
- archinstall.arguments['sys-encoding'] = 'utf-8'
+ if not archinstall.arguments['sys-language']:
+ archinstall.arguments['sys-language'] = 'en_US'
+ if not archinstall.arguments['sys-encoding']:
+ archinstall.arguments['sys-encoding'] = 'utf-8'
- archinstall.log("Keep in mind that if you want multiple locales, post configuration is required.", fg="yellow")
# Ask which harddrive/block-device we will install to
if archinstall.arguments.get('harddrive', None):