diff options
author | 2013-08-10 23:17:29 +0200 | |
---|---|---|
committer | 2013-08-10 23:17:29 +0200 | |
commit | e8987b7c5bf2611e84781d099f8c612ea4d6e6b1 (patch) | |
tree | f34482767dee2b1ce8126d94f059556660ce0752 /pyload/plugins/Account.py | |
parent | fix updateFileInfo and account selection (diff) | |
download | pyload-e8987b7c5bf2611e84781d099f8c612ea4d6e6b1.tar.xz |
new parse_time helper function
Diffstat (limited to 'pyload/plugins/Account.py')
-rw-r--r-- | pyload/plugins/Account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/Account.py b/pyload/plugins/Account.py index b3e26ce58..eabfe6885 100644 --- a/pyload/plugins/Account.py +++ b/pyload/plugins/Account.py @@ -95,7 +95,7 @@ class Account(Base): return self.config_data[option].input.default_value def setConfig(self, option, value): - """ Sets a config value for this account instance. Fallsback """ + """ Sets a config value for this account instance or global plugin config """ if option not in self.config_data: return Base.setConfig(self, option, value) |