Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAggam Rahamim <agamclass@gmail.com>2021-04-16 13:54:22 +0300
committerAggam Rahamim <agamclass@gmail.com>2021-04-16 13:54:22 +0300
commitf6fdc119276457d18d5ff1fb30ab9ff06826f576 (patch)
tree992804d72944ce87d78dda126007c2b100415b76 /examples
parent459f161cf0432393443272ac5b1aa5fc0cd7fd16 (diff)
fixing - letting user choose kernel
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index a927d86b..f4ab0b70 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -178,7 +178,7 @@ def ask_user_questions():
archinstall.arguments['audio'] = None
# Ask what kernel user wants:
- kernel = input("choose a kernel:\n1. linux\n2. linux-lts\n3. linux-zen")
+ kernel = input("\n1. linux\n2. linux-lts\n3. linux-zen\nchoose a kernel of the following: ")
try:
archinstall.arguments['kernel'] = ['linux', 'linux-lts', 'linux-zen'][int(kernel) - 1]
except: