summaryrefslogtreecommitdiffstats
path: root/module/remote
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-08-17 15:49:48 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2009-08-17 15:49:48 +0200
commit9f044df800d8ccca73178a523b18fead36e5befc (patch)
tree3a7704aaf96fb8429edc5e7dcbbab7381c7bca96 /module/remote
parentpyLoad Test Webinterface ! (diff)
downloadpyload-9f044df800d8ccca73178a523b18fead36e5befc.tar.xz
new config options, webinterface test
Diffstat (limited to 'module/remote')
-rw-r--r--module/remote/RequestHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/remote/RequestHandler.py b/module/remote/RequestHandler.py
index 415a8bba7..a879d2297 100644
--- a/module/remote/RequestHandler.py
+++ b/module/remote/RequestHandler.py
@@ -21,7 +21,7 @@ from RequestObject import RequestObject
class RequestHandler:
def __init__(self, core):
self.core = core
- key = hashlib.sha256(core.config['remotepassword'])
+ key = hashlib.sha256(core.config['remote']['password'])
self.bf = Blowfish.new(key.hexdigest(), Blowfish.MODE_ECB)
def proceed(self, data):