From 21a2010bf2768bc658e09666c2135063ce004efc Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 16 Sep 2012 08:30:50 +0900 Subject: [PATCH] Fixed an unicode error after 2to3 --- jinja2/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jinja2/environment.py b/jinja2/environment.py index 130f9a1..1b5dc40 100644 --- a/jinja2/environment.py +++ b/jinja2/environment.py @@ -572,7 +572,7 @@ class Environment(object): # Python 3.3 added a source filesize to the header if sys.version_info >= (3, 3): - py_header += '\x00\x00\x00\x00' + py_header += u'\x00\x00\x00\x00'.encode('iso-8859-15') def write_file(filename, data, mode): if zip: -- 2.26.2