Commit dc820717 by Toshio Kuratomi

Merge pull request #9830 from nathancahill/vars_prompt-no-value

Fix vars_prompt no/false default values
parents d09b6488 cc5a5978
......@@ -672,7 +672,7 @@ class PlaybookCallbacks(object):
result = prompt(msg, private)
# if result is false and default is not None
if not result and default:
if not result and default is not None:
result = default
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment