diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-17 20:45:19 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-17 20:45:19 +0200 |
commit | f9d00f9e1c92fad6f2ad6fd2b2cebe80d3b0485b (patch) | |
tree | 00d251b8198068d67a9b5c388280afa4447f057b /module/network | |
parent | pycurl auth fix (diff) | |
download | pyload-f9d00f9e1c92fad6f2ad6fd2b2cebe80d3b0485b.tar.xz |
~
Diffstat (limited to 'module/network')
-rwxr-xr-x | module/network/Request.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/Request.py b/module/network/Request.py index ea17e04e8..a8087c899 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -225,7 +225,7 @@ class Request: if post: self.pycurl.setopt(pycurl.POSTFIELDS, post) if self.auth: - self.add_auth() + self.add_auth(self.user, self.pw) if ref and self.lastURL is not None: self.pycurl.setopt(pycurl.REFERER, self.lastURL) |