Skip to content

Commit

Permalink
By making it all lowercase the useable options become Y/y, v/V and an…
Browse files Browse the repository at this point in the history
…ything else skips (#674)
  • Loading branch information
Craig Davis authored and phobologic committed Nov 4, 2018
1 parent 6d51e8a commit 36558a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stacker/providers/aws/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def ask_for_approval(full_changeset=None, params_diff=None,
approval_options.append('v')

approve = ui.ask("Execute the above changes? [{}] ".format(
'/'.join(approval_options)))
'/'.join(approval_options))).lower()

if include_verbose and approve == "v":
if params_diff:
Expand Down

0 comments on commit 36558a7

Please sign in to comment.