Break web browser suggestion into second line to avoid wrapping
This commit is contained in:
parent
eb5795b7db
commit
8e722d07cf
|
|
@ -182,7 +182,8 @@ def ask_user_questions():
|
||||||
|
|
||||||
# Additional packages (with some light weight error handling for invalid package names)
|
# Additional packages (with some light weight error handling for invalid package names)
|
||||||
if not archinstall.arguments.get('packages', None):
|
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.")
|
print("Packages not part of the desktop environment are not installed by default.")
|
||||||
|
print("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)]
|
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
|
# Verify packages that were given
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue