From: Armin Ronacher Date: Mon, 20 May 2013 01:13:15 +0000 (+0100) Subject: Corrected a newline X-Git-Tag: 2.7~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=146c9ba1706f82b5d891da8ffc119ac2ce2a69d4;p=thirdparty%2Fjinja.git Corrected a newline --- diff --git a/jinja2/_compat.py b/jinja2/_compat.py index 63e331de..ccfb18e8 100644 --- a/jinja2/_compat.py +++ b/jinja2/_compat.py @@ -17,7 +17,6 @@ _identity = lambda x: x if not PY2: - unichr = chr range_type = range text_type = str @@ -45,6 +44,7 @@ if not PY2: implements_to_string = _identity encode_filename = _identity get_next = lambda x: x.__next__ + else: unichr = unichr text_type = unicode