get rid of an exit() (#899)

This commit is contained in:
Werner Llácer 2022-01-24 12:36:23 +01:00 committed by GitHub
parent bb98594054
commit b5f50889eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class GlobalMenu:
if key not in archinstall.arguments:
archinstall.arguments[key] = sel._current_selection
self._post_processing()
exit()
def _process_selection(self, selection):
# find the selected option in our option list
option = [[k, v] for k, v in self._menu_options.items() if v.text.strip() == selection]