diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-13 23:24:21 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-13 23:24:21 +0100 |
commit | c7ad1cc5b4a5d190a060e3ddd9274c3065da6708 (patch) | |
tree | 639062525ddde3b8c785f26a0f4091ec10d9e204 /module/network/HTTPRequest.py | |
parent | fixed pyflakes and sloccount (diff) | |
download | pyload-c7ad1cc5b4a5d190a060e3ddd9274c3065da6708.tar.xz |
Diffstat (limited to 'module/network/HTTPRequest.py')
-rw-r--r-- | module/network/HTTPRequest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/HTTPRequest.py b/module/network/HTTPRequest.py index 4684397d9..7887081e7 100644 --- a/module/network/HTTPRequest.py +++ b/module/network/HTTPRequest.py @@ -206,7 +206,7 @@ class HTTPRequest(): finally: self.c.setopt(pycurl.FOLLOWLOCATION, 1) self.c.setopt(pycurl.NOBODY, 0) - self.c.setopt(pycurl.CUSTOMREQUEST, 0) + self.c.unsetopt(pycurl.CUSTOMREQUEST) else: self.c.perform() |