Skip to content

Commit 3fb1571

Browse files
committed
lowercase retry/quit in missing-integration
1 parent 445cc61 commit 3fb1571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paths_cli/wizard/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def not_installed(wizard, package, obj_type):
3030
retry = wizard.ask(f"Hey, it looks like you don't have {package} "
3131
"installed. Do you want to try a different "
3232
f"{obj_type}, or do you want to quit?",
33-
options=["[R]etry", "[Q]uit"])
33+
options=["[r]etry", "[q]uit"])
3434
if retry == 'r':
3535
raise RestartObjectException()
3636
if retry == 'q':

0 commit comments

Comments
 (0)