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 14:43:17 +0300
committerAggam Rahamim <agamclass@gmail.com>2021-04-16 14:43:17 +0300
commit8b9f16a0284c5261a29b9818809cbe45a9c0c10b (patch)
tree0ff322c814f0ad2948716a93ed68b9c1a5b365b9 /examples
parent81b0fa1792716b9a5ec889003dba334d3987918b (diff)
removed new line when ask for 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 f4ab0b70..e6abe872 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("\n1. linux\n2. linux-lts\n3. linux-zen\nchoose a kernel of the following: ")
+ kernel = input("1. 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: