Normalize to styleguide
authorArmin Ronacher <armin.ronacher@active-4.com>
Sat, 7 Jan 2012 16:28:28 +0000 (17:28 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sat, 7 Jan 2012 16:28:28 +0000 (17:28 +0100)
jinja2/filters.py

index 69e67e2913974f6fe7a3f5d088d2c266bcc8de21..74f3113b687cd440f59fbf6dbcdba2bd3ce1ead0 100644 (file)
@@ -70,23 +70,25 @@ def do_forceescape(value):
         value = value.__html__()
     return escape(unicode(value))
 
+
 def do_urlescape(value):
     """Escape strings for use in URLs (uses UTF-8 encoding)."""
     def utf8(o):
         return unicode(o).encode('utf8')
-    
+
     if isinstance(value, basestring):
         return urllib.quote(utf8(value))
-    
+
     if hasattr(value, 'items'):
         # convert dictionaries to list of 2-tuples
         value = value.items()
-    
+
     if hasattr(value, 'next'):
         # convert generators to list
         value = list(value)
-    
-    return urllib.urlencode([(utf8(k), utf8(v)) for (k, v) in value])
+
+    return urllib.urlencode((utf8(k), utf8(v)) for (k, v) in value)
+
 
 @evalcontextfilter
 def do_replace(eval_ctx, s, old, new, count=None):