diff options
Diffstat (limited to 'module/AddonManager.py')
-rw-r--r-- | module/AddonManager.py | 4 |
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) |