diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-28 14:52:22 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-05-28 14:52:22 +0200 |
commit | 88227131086768d62f26be330f3101924ebbb50e (patch) | |
tree | a3b1e2582080d065281e7297b2236612944124ae /module/network | |
parent | clean up some code, new config parser, basic time shedule (diff) | |
download | pyload-88227131086768d62f26be330f3101924ebbb50e.tar.xz |
time shedule fix
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 07c1769ec..86449a4f2 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -83,7 +83,7 @@ class Request: return output - def addAuth(self, user, pw): + def add_auth(self, user, pw): self.downloader.addheaders.append(['Authorization','Basic ' + base64.encodestring(user + ':' + pw)[:-1]]) |