1
0
mirror of https://github.com/httpie/cli.git synced 2025-08-10 22:42:05 +02:00

Cleanup, CHANGELOG

This commit is contained in:
Jakub Roztocil
2012-08-01 23:51:30 +02:00
parent 52e46bedda
commit e045ca6bd8
3 changed files with 4 additions and 4 deletions

View File

@@ -58,7 +58,7 @@ class HTTPResponse(HTTPMessage):
"""A `requests.models.Response` wrapper."""
def __iter__(self):
mb = 1024 * 1000
mb = 1024 * 1024
return self._orig.iter_content(chunk_size=2 * mb)
@property