Make no_engine the default templating action.

This commit is contained in:
Jeroen Hoekx 2012-05-09 16:13:20 +02:00
parent 82144fd543
commit 2bbc05185e
3 changed files with 4 additions and 4 deletions

View file

@ -243,7 +243,7 @@ def varReplace(raw, vars):
return ''.join(done)
def template(text, vars, setup_cache, no_engine=False):
def template(text, vars, setup_cache, no_engine=True):
''' run a text buffer through the templating engine '''
vars = vars.copy()
text = varReplace(str(text), vars)