summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/internal/UpdateManager.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/internal/UpdateManager.py')
-rw-r--r--pyload/plugins/internal/UpdateManager.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/plugins/internal/UpdateManager.py b/pyload/plugins/internal/UpdateManager.py
index 50a965228..7848fa2de 100644
--- a/pyload/plugins/internal/UpdateManager.py
+++ b/pyload/plugins/internal/UpdateManager.py
@@ -7,13 +7,13 @@ from operator import itemgetter
from os import path, remove, stat
from pyload.network.RequestFactory import getURL
-from pyload.plugins.base.Hook import Expose, Hook, threaded
+from pyload.plugins.base.Addon import Expose, Addon, threaded
from pyload.utils import safe_join
-class UpdateManager(Hook):
+class UpdateManager(Addon):
__name__ = "UpdateManager"
- __type__ = "hook"
+ __type__ = "addon"
__version__ = "0.36"
__config__ = [("activated", "bool", "Activated", True),
@@ -22,7 +22,7 @@ class UpdateManager(Hook):
("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 """
+ __description__ = """Check for updates"""
__author_name__ = "Walter Purcaro"
__author_mail__ = "vuolter@gmail.com"
@@ -287,7 +287,7 @@ class UpdateManager(Hook):
if path.isfile(filename):
try:
if type == "addon":
- self.manager.deactivateHook(name)
+ self.manager.deactivateAddon(name)
remove(filename)
except Exception, e:
self.logDebug("Error deleting: %s" % path.basename(filename), e)