diff options
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) |