fix vars_prompt no/false values

pull/9830/head
Nathan Cahill 10 years ago
parent b74a02301b
commit cc5a5978ef

@ -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

Loading…
Cancel
Save