Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2021-04-06 19:05:52 +0200
committerGitHub <noreply@github.com>2021-04-06 19:05:52 +0200
commit2e7930857b05070118e5ff4c3aa99e0312f7febc (patch)
treef1881fd0df2f022c01b04c297bd491eb9387d9d9
parent6c3f46f6173cfb6dd2d895afc5e50aa1c9679988 (diff)
Moved the print logic for browser warning
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 9df8a518..4205518d 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -181,8 +181,8 @@ def ask_user_questions():
exit(1)
# Additional packages (with some light weight error handling for invalid package names)
- print("Packages not part of the desktop environment are not installed by default. If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
if not archinstall.arguments.get('packages', None):
+ print("Packages not part of the desktop environment are not installed by default. If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)]
# Verify packages that were given