Fixed line-ending issue after using generic_multi_select()
This commit is contained in:
parent
4b6e312cfa
commit
e6c28a94ee
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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():
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue