get rid of an exit() (#899)
This commit is contained in:
parent
bb98594054
commit
b5f50889eb
|
|
@ -242,7 +242,7 @@ class GlobalMenu:
|
||||||
if key not in archinstall.arguments:
|
if key not in archinstall.arguments:
|
||||||
archinstall.arguments[key] = sel._current_selection
|
archinstall.arguments[key] = sel._current_selection
|
||||||
self._post_processing()
|
self._post_processing()
|
||||||
exit()
|
|
||||||
def _process_selection(self, selection):
|
def _process_selection(self, selection):
|
||||||
# find the selected option in our option list
|
# find the selected option in our option list
|
||||||
option = [[k, v] for k, v in self._menu_options.items() if v.text.strip() == selection]
|
option = [[k, v] for k, v in self._menu_options.items() if v.text.strip() == selection]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue