diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-04-10 15:35:46 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-04-10 15:35:46 +0200 |
commit | 184bb4afd35bb84e8163ab0bf536886197ab91c8 (patch) | |
tree | a0fa842be2daf3537b7e0719cdb37ff523ee8ae9 /pyLoadCore.py | |
parent | _.-:Package Folders:-._ (diff) | |
download | pyload-184bb4afd35bb84e8163ab0bf536886197ab91c8.tar.xz |
set_conf fix
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index 5dc8d00b9..ac4d387c5 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -529,7 +529,7 @@ class ServerMethods(): def set_conf_val(self, cat, opt, val): if opt not in ("username", "password"): - self.core.xmlconfig.set(cat, opt, val) + self.core.config[str(cat)][str(opt)] = val else: raise Exception("not allowed!") |