diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-12-06 21:34:36 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-12-06 21:34:36 (GMT) |
commit | 4ce6aa4ba7b5cf4ab48319e873d5afdb4660c76d (patch) | |
tree | 4f50b9c8e4b01cfa2707983f9bbf9dd0ede9a09f /Lib | |
parent | 38d9643d5e225dd7c342c6ccaae3e6e01f705e91 (diff) | |
download | cpython-4ce6aa4ba7b5cf4ab48319e873d5afdb4660c76d.zip cpython-4ce6aa4ba7b5cf4ab48319e873d5afdb4660c76d.tar.gz cpython-4ce6aa4ba7b5cf4ab48319e873d5afdb4660c76d.tar.bz2 |
Fix dangling whitespace
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/client.py b/Lib/http/client.py index 7062569..24feae8 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -599,7 +599,7 @@ class HTTPResponse(io.RawIOBase): break except ValueError: raise IncompleteRead(bytes(b[0:total_bytes])) - + if len(mvb) < chunk_left: n = self._safe_readinto(mvb) self.chunk_left = chunk_left - n |