Fix a typo in the prompt code

This is unfortunately related to not being able to reuse the same code that was tested.
pull/1090/head
Dag Wieers 12 years ago
parent 27d3ac9dc6
commit 6b6e3c64c8

@ -165,7 +165,7 @@ class Play(object):
raise errors.AnsibleError("'vars_prompt' item is missing 'name:'")
vname = var['name']
prompt = util.template(None, "%s: " % var.get("prompt", vname), self.vars)
prompt = utils.template(None, "%s: " % var.get("prompt", vname), self.vars)
private = var.get("private", True)
confirm = var.get("confirm", False)

Loading…
Cancel
Save