summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-05-28 14:52:22 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-05-28 14:52:22 +0200
commit88227131086768d62f26be330f3101924ebbb50e (patch)
treea3b1e2582080d065281e7297b2236612944124ae /module/network
parentclean up some code, new config parser, basic time shedule (diff)
downloadpyload-88227131086768d62f26be330f3101924ebbb50e.tar.xz
time shedule fix
Diffstat (limited to 'module/network')
-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 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]])