Bugfix: menu_setup()
This commit is contained in:
parent
a6f9518648
commit
56c3960451
1 changed files with 9 additions and 0 deletions
|
|
@ -212,6 +212,15 @@ def menu_root():
|
||||||
def menu_setup():
|
def menu_setup():
|
||||||
"""Format a disk (MBR/GPT), apply a Windows image, and setup boot files."""
|
"""Format a disk (MBR/GPT), apply a Windows image, and setup boot files."""
|
||||||
errors = False
|
errors = False
|
||||||
|
other_results = {
|
||||||
|
'Error': {
|
||||||
|
'CalledProcessError': 'Unknown Error',
|
||||||
|
'PathNotFoundError': 'Missing',
|
||||||
|
},
|
||||||
|
'Warning': {
|
||||||
|
'GenericAbort': 'Skipped',
|
||||||
|
'GenericRepair': 'Repaired',
|
||||||
|
}}
|
||||||
set_title('{}: Setup Menu'.format(KIT_NAME_FULL))
|
set_title('{}: Setup Menu'.format(KIT_NAME_FULL))
|
||||||
|
|
||||||
# Set ticket ID
|
# Set ticket ID
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue