From fad2c36cd281398c1a59937256530d2d2cde055e Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 30 Sep 2020 09:14:17 +0000 Subject: Fixed a type-o --- archinstall/lib/user_interaction.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'archinstall') 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.") -- cgit v1.2.3-54-g00ecf