Commit 6b6e3c64 by Dag Wieers

Fix a typo in the prompt code

This is unfortunately related to not being able to reuse the same code that was tested.
parent 27d3ac9d
......@@ -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)
......
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