Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/menu
diff options
context:
space:
mode:
authorWerner Llácer <wllacer@gmail.com>2022-01-24 12:36:23 +0100
committerGitHub <noreply@github.com>2022-01-24 12:36:23 +0100
commitb5f50889eb5fa544ff11199626329df5679dac8e (patch)
treee639ad1d1640880acd3a2d02efc0a5701050dd13 /archinstall/lib/menu
parentbb98594054939e469d07f704e70f597a8b379657 (diff)
get rid of an exit() (#899)
Diffstat (limited to 'archinstall/lib/menu')
-rw-r--r--archinstall/lib/menu/selection_menu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py
index 648fed94..8128fefc 100644
--- a/archinstall/lib/menu/selection_menu.py
+++ b/archinstall/lib/menu/selection_menu.py
@@ -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]