Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-22 10:31:32 +0200
committerAnton Hvornum <anton@hvornum.se>2021-04-22 10:31:32 +0200
commit4d65639724e1402ef584221bbbb0e80dba827ab7 (patch)
tree9aa6b6d0e9d839a328df57bf42f2003f2b16c5a1
parent46b872aa61e0f07fd561a4e14083a30a3d039d38 (diff)
Fixes the crash on empty profile choice. Since generic_select() returns None, we can't pipe that into Profile() (at least not yet)
-rw-r--r--archinstall/lib/user_interaction.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 1cfe5490..e0761e07 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -351,9 +351,10 @@ def select_profile(options):
selected_profile = generic_select(profiles, 'Enter a pre-programmed profile name if you want to install one: ',
options_output=False)
- return Profile(None, selected_profile)
-
- raise RequirementError("Selecting profiles require a least one profile to be given as an option.")
+ if selected_profile:
+ return Profile(None, selected_profile)
+ else:
+ raise RequirementError("Selecting profiles require a least one profile to be given as an option.")
def select_language(options, show_only_country_codes=True):
"""