Commit a5dc23b5 by Daniel Néri

For utils.template_from_file, change 'no_engine' default to True

This now follows the other template functions, and implicitly also
fixes that playbook handler includes were still processed by Jinja2.
parent c33cba37
......@@ -273,7 +273,7 @@ def template(text, vars, setup_cache, no_engine=True):
def double_template(text, vars, setup_cache):
return template(template(text, vars, setup_cache), vars, setup_cache)
def template_from_file(path, vars, setup_cache, no_engine=False):
def template_from_file(path, vars, setup_cache, no_engine=True):
''' run a file through the templating engine '''
data = codecs.open(path, encoding="utf8").read()
return template(data, vars, setup_cache, no_engine=no_engine)
......
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