diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-07 16:08:27 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-07 16:08:27 +0100 |
commit | 16e1ee584d6ddec46ffbef8c9b1d52c51a826648 (patch) | |
tree | 14faa01a7a1adf25b7e80ba735b1d8de0548a2a2 /pyload/network | |
parent | Fix previous merge (diff) | |
download | pyload-16e1ee584d6ddec46ffbef8c9b1d52c51a826648.tar.xz |
Fix with_statement
Diffstat (limited to 'pyload/network')
-rw-r--r-- | pyload/network/HTTPRequest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyload/network/HTTPRequest.py b/pyload/network/HTTPRequest.py index c2442367a..0e310791d 100644 --- a/pyload/network/HTTPRequest.py +++ b/pyload/network/HTTPRequest.py @@ -16,6 +16,8 @@ @author: RaNaN """ +from __future__ import with_statement + import pycurl from codecs import getincrementaldecoder, lookup, BOM_UTF8 |