From 146c9ba1706f82b5d891da8ffc119ac2ce2a69d4 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 20 May 2013 02:13:15 +0100 Subject: Corrected a newline --- jinja2/_compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1