summaryrefslogtreecommitdiffstats
path: root/module/AddonManager.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-30 16:38:37 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-30 16:38:37 +0100
commit9b9ba2a20409486e6645e0429220447f84199cc7 (patch)
tree0848626e95da6cb850819ded944ef1220f76f42e /module/AddonManager.py
parentplugin chooser for settings (diff)
downloadpyload-9b9ba2a20409486e6645e0429220447f84199cc7.tar.xz
show active addons
Diffstat (limited to 'module/AddonManager.py')
-rw-r--r--module/AddonManager.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/module/AddonManager.py b/module/AddonManager.py
index cc2181767..dc83a553f 100644
--- a/module/AddonManager.py
+++ b/module/AddonManager.py
@@ -36,6 +36,7 @@ class AddonManager:
__builtin__.addonManager = self #needed to let addons register themselves
self.log = self.core.log
+ # TODO: multiuser, addons can store the user itself, probably not needed here
self.plugins = {}
self.methods = {} # dict of names and list of methods usable by rpc
self.events = {} # Contains event that will be registered
@@ -237,9 +238,6 @@ class AddonManager:
# clean up
del self.events[name]
- def addConfigHandler(self, plugin, func):
- pass #TODO
-
def addEvent(self, *args):
self.core.eventManager.addEvent(*args)