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.
pull/384/head
Daniel Néri 13 years ago
parent c33cba3746
commit a5dc23b537

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

Loading…
Cancel
Save