changeset 79:9fb1a7d67317 py2.6

remove unneeded encoding parameter
author Jan Kanis <jan.code@jankanis.nl>
date Thu, 19 Jun 2014 16:43:22 +0200
parents c0804e6443c6
children f1791df1478c
files blast2html.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/blast2html.py	Thu Jun 19 16:29:33 2014 +0200
+++ b/blast2html.py	Thu Jun 19 16:43:22 2014 +0200
@@ -245,7 +245,7 @@
         self.templatename = templatename
 
         self.blast = objectify.parse(self.input).getroot()
-        self.loader = jinja2.FileSystemLoader(searchpath=templatedir, encoding='utf-8')
+        self.loader = jinja2.FileSystemLoader(searchpath=templatedir)
         self.environment = jinja2.Environment(loader=self.loader,
                                               lstrip_blocks=True, trim_blocks=True, autoescape=True)