diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-18 17:01:17 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-18 17:01:17 +0200 |
commit | 9a6ea22616cf3cc67e292c908521b79764400faf (patch) | |
tree | 1924843f28d992490d867d0557da90dfb1da6404 /pyload/plugins/Account.py | |
parent | fixed login (diff) | |
download | pyload-9a6ea22616cf3cc67e292c908521b79764400faf.tar.xz |
new linkgrabber
Diffstat (limited to 'pyload/plugins/Account.py')
-rw-r--r-- | pyload/plugins/Account.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/Account.py b/pyload/plugins/Account.py index 26a6124b6..ed0769fb4 100644 --- a/pyload/plugins/Account.py +++ b/pyload/plugins/Account.py @@ -95,9 +95,9 @@ class Account(Base): return self.config_data[option].input.default_value def setConfig(self, option, value): - """ Sets a config value for this account instance or global plugin config """ + """ Sets a config value for this account instance. Modifying the global values is not allowed. """ if option not in self.config_data: - return Base.setConfig(self, option, value) + return value = from_string(value, self.config_data[option].input.type) # given value is the default value and does not need to be saved at all |