Fixed line-ending issue after using generic_multi_select()

This commit is contained in:
Anton Hvornum 2021-05-11 11:48:44 +02:00
parent 4b6e312cfa
commit e6c28a94ee
2 changed files with 3 additions and 1 deletions

View File

@ -146,6 +146,8 @@ def generic_multi_select(options, text="Select one or more of the options above
else:
selected_options.append(selected_option)
sys.stdout.write('\n')
sys.stdout.flush()
return selected_options

View File

@ -8,7 +8,7 @@ if archinstall.arguments.get('help'):
exit(0)
# For support reasons, we'll log the disk layout pre installation to match against post-installation layout
archinstall.log(f"Disk states before installing: {archinstall.disk_layouts()}", level=archinstall.LOG_LEVELS.Debug)
archinstall.log(f"Disk states before installing: {archinstall.disk_layouts()}", level=logging.DEBUG)
def ask_user_questions():
"""