Fixes the crash on empty profile choice. Since generic_select() returns None, we can't pipe that into Profile() (at least not yet)
This commit is contained in:
parent
46b872aa61
commit
4d65639724
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue