[FIX] template lookup typo

bzr revid: nicolas.bessi@camptocamp.com-20120109201353-qbbu6yzdhzoen7i6
This commit is contained in:
nicolas.bessi@camptocamp.com 2012-01-09 21:13:53 +01:00
parent 74e627b0c6
commit 0694c54010
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def mako_template(text):
This template uses UTF-8 encoding
"""
tmp_lookup = TemplateLookup()#we need it in order to allows inclusion and inheritance
tmp_lookup = TemplateLookup() #we need it in order to allow inclusion and inheritance
return Template(text, input_encoding='utf-8', output_encoding='utf-8', lookup=tmp_lookup)