Setting trim_blocks to True
This commit is contained in:
parent
6bbaa26f64
commit
7c600ae0d3
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ def template(basedir, text, vars):
|
|||
def template_from_file(basedir, path, vars):
|
||||
''' run a file through the templating engine '''
|
||||
|
||||
environment = jinja2.Environment(loader=jinja2.FileSystemLoader(basedir), trim_blocks=False)
|
||||
environment = jinja2.Environment(loader=jinja2.FileSystemLoader(basedir), trim_blocks=True)
|
||||
environment.filters['to_json'] = json.dumps
|
||||
environment.filters['from_json'] = json.loads
|
||||
environment.filters['to_yaml'] = yaml.dump
|
||||
|
|
Loading…
Reference in a new issue