diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-11 01:04:07 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-11 01:04:07 +0100 |
commit | 1b2591b0650a6a0be1ad41022f6019d17192f195 (patch) | |
tree | dbd2158b96141ef9354b5cd5edaead28978d65e7 /pyload/plugins/internal/UpdateManager.py | |
parent | Support new key attributes (diff) | |
download | pyload-1b2591b0650a6a0be1ad41022f6019d17192f195.tar.xz |
Rename some Addon methods
Diffstat (limited to 'pyload/plugins/internal/UpdateManager.py')
-rw-r--r-- | pyload/plugins/internal/UpdateManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/internal/UpdateManager.py b/pyload/plugins/internal/UpdateManager.py index 87e86f17f..dd5d29d0b 100644 --- a/pyload/plugins/internal/UpdateManager.py +++ b/pyload/plugins/internal/UpdateManager.py @@ -50,13 +50,13 @@ class UpdateManager(Addon): self.periodical2() - def coreReady(self): + def activate(self): self.pluginConfigChanged(self.__name, "interval", self.getConfig("interval")) x = lambda: self.pluginConfigChanged(self.__name, "reloadplugins", self.getConfig("reloadplugins")) self.core.scheduler.addJob(10, x, threaded=False) - def unload(self): + def deactivate(self): self.pluginConfigChanged(self.__name, "reloadplugins", False) |