what is wrong with you people? :)
authorKenneth Reitz <me@kennethreitz.com>
Fri, 31 Jan 2014 17:31:11 +0000 (12:31 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Fri, 31 Jan 2014 17:31:11 +0000 (12:31 -0500)
requests/models.py

index e2429b1ad74c4f3d978f0956dfb04c44dafcd755..014ca7891e935abe763fcc013562fcb9d7e12b0b 100644 (file)
@@ -612,8 +612,7 @@ class Response(object):
             try:
                 # Special case for urllib3.
                 try:
-                    for chunk in self.raw.stream(chunk_size,
-                                                 decode_content=True):
+                    for chunk in self.raw.stream(chunk_size, decode_content=True):
                         yield chunk
                 except IncompleteRead as e:
                     raise ChunkedEncodingError(e)