[FIX] template lookup typo
authornicolas.bessi@camptocamp.com <>
Mon, 9 Jan 2012 20:13:53 +0000 (21:13 +0100)
committernicolas.bessi@camptocamp.com <>
Mon, 9 Jan 2012 20:13:53 +0000 (21:13 +0100)
bzr revid: nicolas.bessi@camptocamp.com-20120109201353-qbbu6yzdhzoen7i6

addons/report_webkit/webkit_report.py

index 4cefe17..c3753f5 100644 (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)