summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2013-05-20 02:13:15 +0100
committerArmin Ronacher <armin.ronacher@active-4.com>2013-05-20 02:13:15 +0100
commit146c9ba1706f82b5d891da8ffc119ac2ce2a69d4 (patch)
tree897dd47d242a62d6533b44f5778bdf66396854a2
parenteb1211421915b0c3d9973b387603f999ded34037 (diff)
downloadjinja2-146c9ba1706f82b5d891da8ffc119ac2ce2a69d4.tar.gz
Corrected a newline
-rw-r--r--jinja2/_compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jinja2/_compat.py b/jinja2/_compat.py
index 63e331d..ccfb18e 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