Minor whitespace changes to guided.py

This commit is contained in:
Dylan Taylor 2021-05-15 13:02:19 -04:00
parent 254706d57d
commit 8d39ff4a76
1 changed files with 4 additions and 3 deletions

View File

@ -42,7 +42,7 @@ def ask_user_questions():
archinstall.log(e, fg="red") archinstall.log(e, fg="red")
else: else:
selected_region = archinstall.arguments['mirror-region'] selected_region = archinstall.arguments['mirror-region']
archinstall.arguments['mirror-region'] = {selected_region : archinstall.list_mirrors()[selected_region]} archinstall.arguments['mirror-region'] = {selected_region: archinstall.list_mirrors()[selected_region]}
# Ask which harddrive/block-device we will install to # Ask which harddrive/block-device we will install to
if archinstall.arguments.get('harddrive', None): if archinstall.arguments.get('harddrive', None):
@ -389,5 +389,6 @@ def perform_installation(mountpoint):
# For support reasons, we'll log the disk layout post installation (crash or no crash) # For support reasons, we'll log the disk layout post installation (crash or no crash)
archinstall.log(f"Disk states after installing: {archinstall.disk_layouts()}", level=archinstall.LogLevels.Debug) archinstall.log(f"Disk states after installing: {archinstall.disk_layouts()}", level=archinstall.LogLevels.Debug)
ask_user_questions() ask_user_questions()
perform_installation_steps() perform_installation_steps()