Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/user_interaction.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/user_interaction.py')
-rw-r--r--archinstall/lib/user_interaction.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 4fc6c8d9..c2f8ac38 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -52,10 +52,11 @@ def select_profile(options):
# Some crude safety checks, make sure the imported profile has
# a __name__ check and if so, check if it's got a _prep_function()
# we can call to ask for more user input.
- if '__name__' in source_data and '_prep_function' in source_data
+ if '__name__' in source_data and '_prep_function' in source_data:
with profile.load_instructions() as imported:
if hasattr(imported, '_prep_function'):
return profile, imported
+
return selected_profile
raise RequirementError("Selecting profiles require a least one profile to be given as an option.")