Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 37e54685..25a8b9e8 100644
--- a/archinstall/lib/menu/selection_menu.py
+++ b/archinstall/lib/menu/selection_menu.py
@@ -141,7 +141,7 @@ class Selector:
self._current_selection = current
def has_selection(self) -> bool:
- if self._current_selection is None:
+ if not self._current_selection:
return False
return True