summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/XMPPInterface.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-07-07 11:16:06 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-07-07 11:16:06 +0200
commit4344fb664864b157ac397ea210a7b34eaf3b275f (patch)
treee86a558f7cc6a15273b3aa3a0f5d474968316f28 /module/plugins/hooks/XMPPInterface.py
parentadditional log message (diff)
downloadpyload-4344fb664864b157ac397ea210a7b34eaf3b275f.tar.xz
basic event manager
Diffstat (limited to 'module/plugins/hooks/XMPPInterface.py')
-rw-r--r--module/plugins/hooks/XMPPInterface.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/XMPPInterface.py b/module/plugins/hooks/XMPPInterface.py
index ce937c5d6..a96adf524 100644
--- a/module/plugins/hooks/XMPPInterface.py
+++ b/module/plugins/hooks/XMPPInterface.py
@@ -43,8 +43,8 @@ class XMPPInterface(IRCInterface, JabberClient):
implements(IMessageHandlersProvider)
- def __init__(self, core):
- IRCInterface.__init__(self, core)
+ def __init__(self, core, manager):
+ IRCInterface.__init__(self, core, manager)
self.jid = JID(self.getConfig("jid"))
password = self.getConfig("pw")