Fixed #2250
authormikecool1000 <mjdelay@calpoly.edu>
Thu, 9 Oct 2014 19:22:18 +0000 (12:22 -0700)
committermikecool1000 <mjdelay@calpoly.edu>
Thu, 9 Oct 2014 19:22:18 +0000 (12:22 -0700)
requests/utils.py

index 058b608b6ebfa7385810d5d7573e56ccf0c8a134..06e66a80c84a46ed1662255925f9cddd43736d1d 100644 (file)
@@ -567,7 +567,7 @@ def parse_header_links(value):
 
     replace_chars = " '\""
 
-    for val in re.split(",\ *<",value):
+    for val in re.split(",\ *<", value):
         try:
             url, params = val.split(";", 1)
         except ValueError: