diff options
| author | 2014-11-01 22:21:58 +0100 | |
|---|---|---|
| committer | 2014-11-01 22:21:58 +0100 | |
| commit | 4cc95697eface0d00c73d5b39f0cfdf5607f814d (patch) | |
| tree | 38645a6550592eeb126c6d401755b72f9fbc864c /module/plugins/hooks/UpdateManager.py | |
| parent | [SimpleHoster] Fix typo (diff) | |
| download | pyload-4cc95697eface0d00c73d5b39f0cfdf5607f814d.tar.xz | |
Don't handle bugged event pluginConfigChanged
Diffstat (limited to 'module/plugins/hooks/UpdateManager.py')
| -rw-r--r-- | module/plugins/hooks/UpdateManager.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/module/plugins/hooks/UpdateManager.py b/module/plugins/hooks/UpdateManager.py index e55c0e104..5fe1b0e5f 100644 --- a/module/plugins/hooks/UpdateManager.py +++ b/module/plugins/hooks/UpdateManager.py @@ -14,7 +14,7 @@ from module.utils import save_join  class UpdateManager(Hook):      __name__    = "UpdateManager"      __type__    = "hook" -    __version__ = "0.36" +    __version__ = "0.37"      __config__ = [("activated", "bool", "Activated", True),                    ("mode", "pyLoad + plugins;plugins only", "Check updates for", "pyLoad + plugins"), @@ -27,7 +27,7 @@ class UpdateManager(Hook):      __authors__     = [("Walter Purcaro", "vuolter@gmail.com")] -    event_list = ["pluginConfigChanged"] +    # event_list = ["pluginConfigChanged"]      SERVER_URL = "http://updatemanager.pyload.org"      MIN_INTERVAL = 6 * 60 * 60  #: 6h minimum check interval (value is in seconds) | 
