diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-20 17:53:03 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-20 17:53:03 +0200 |
commit | 69c5fbfff3fbfb866985d60d9bdde7fd1ab10511 (patch) | |
tree | a09e7753302fdd67c878f6371bb3434d342b832c /module/network | |
parent | use correct encoding header parsing (diff) | |
download | pyload-69c5fbfff3fbfb866985d60d9bdde7fd1ab10511.tar.xz |
MU fix
Diffstat (limited to 'module/network')
-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 ed320562d..52c5474ba 100644 --- a/module/network/HTTPRequest.py +++ b/module/network/HTTPRequest.py @@ -177,9 +177,9 @@ class HTTPRequest(): self.c.perform() rep = self.getResponse() + self.lastEffectiveURL = self.c.getinfo(pycurl.EFFECTIVE_URL) self.code = self.verifyHeader() - self.lastEffectiveURL = self.c.getinfo(pycurl.EFFECTIVE_URL) self.addCookies() if decode: |