summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-08-17 20:45:19 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-08-17 20:45:19 +0200
commitf9d00f9e1c92fad6f2ad6fd2b2cebe80d3b0485b (patch)
tree00d251b8198068d67a9b5c388280afa4447f057b
parentpycurl auth fix (diff)
downloadpyload-f9d00f9e1c92fad6f2ad6fd2b2cebe80d3b0485b.tar.xz
~
-rwxr-xr-xmodule/network/Request.py2
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)