Skip to content

Commit

Permalink
Set the first (highest prio) credentials manager as the default
Browse files Browse the repository at this point in the history
  • Loading branch information
dmach committed Mar 28, 2022
1 parent 853a384 commit 8a85789
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion osc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,9 @@ def select_credentials_manager_descr():
for row in table:
print(row)

i = raw_input('Select credentials manager: ')
i = raw_input('Select credentials manager [default=1]: ')
if not i:
i = "1"
if not i.isdigit():
sys.exit('Invalid selection')
i = int(i) - 1
Expand Down

0 comments on commit 8a85789

Please sign in to comment.