Commit cc5a5978 by Nathan Cahill

fix vars_prompt no/false values

parent b74a0230
......@@ -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