diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-20 02:34:31 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-20 02:34:31 +0100 |
commit | 6d4fbe6b3e18f75110e0420215ba5df3e0d9d7b3 (patch) | |
tree | d9b209d2627bdb3aa58094c814c235cc1b764f3e /pyload/plugins/internal/UpdateManager.py | |
parent | Import threading instead thread + thread cleanup (diff) | |
download | pyload-6d4fbe6b3e18f75110e0420215ba5df3e0d9d7b3.tar.xz |
__config__ cleanup for addons
Diffstat (limited to 'pyload/plugins/internal/UpdateManager.py')
-rw-r--r-- | pyload/plugins/internal/UpdateManager.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugins/internal/UpdateManager.py b/pyload/plugins/internal/UpdateManager.py index 626e62f4e..082721e2f 100644 --- a/pyload/plugins/internal/UpdateManager.py +++ b/pyload/plugins/internal/UpdateManager.py @@ -16,11 +16,11 @@ class UpdateManager(Addon): __type__ = "addon" __version__ = "0.40" - __config__ = [("activated", "bool", "Activated", True), - ("mode", "pyLoad + plugins;plugins only", "Check updates for", "pyLoad + plugins"), - ("interval", "int", "Check interval in hours", 8), - ("reloadplugins", "bool", "Monitor plugins for code changes (debug mode only)", True), - ("nodebugupdate", "bool", "Don't check for updates in debug mode", True)] + __config__ = [("activated" , "bool" , "Activated" , True ), + ("mode" , "pyLoad + plugins;plugins only", "Check updates for" , "pyLoad + plugins"), + ("interval" , "int" , "Check interval in hours" , 8 ), + ("reloadplugins", "bool" , "Monitor plugins for code changes (debug mode only)", True ), + ("nodebugupdate", "bool" , "Don't check for updates in debug mode" , True )] __description__ = """Check for updates""" __license__ = "GPLv3" |