]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Corrected a newline
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 20 May 2013 01:13:15 +0000 (02:13 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 20 May 2013 01:13:15 +0000 (02:13 +0100)
jinja2/_compat.py

index 63e331deea24f823eee7fa45dc110e477d8c86e2..ccfb18e804d24102de4db4165176903fabe2eb21 100644 (file)
@@ -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