summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-07-21 17:50:29 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-07-21 17:50:29 +0200
commit4328762076e633723c41429cba92c85bc84e9910 (patch)
treef213aaa727cb27510d6915248f0bbfd7350b8101
parentc2f6f077762282d311a6f876f94cc1a4eb9e805f (diff)
downloadslixmpp-4328762076e633723c41429cba92c85bc84e9910.tar.gz
slixmpp-4328762076e633723c41429cba92c85bc84e9910.tar.bz2
slixmpp-4328762076e633723c41429cba92c85bc84e9910.tar.xz
slixmpp-4328762076e633723c41429cba92c85bc84e9910.zip
Fix signature of init_plugins() function
-rw-r--r--slixmpp/basexmpp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/basexmpp.py b/slixmpp/basexmpp.py
index 2d83385f..0b133f6d 100644
--- a/slixmpp/basexmpp.py
+++ b/slixmpp/basexmpp.py
@@ -213,7 +213,7 @@ class BaseXMPP(XMLStream):
log.warning('Legacy XMPP 0.9 protocol detected.')
self.event('legacy_protocol')
- def init_plugins(self, *args, **kwargs):
+ def init_plugins(self):
for name in self.plugin:
if not hasattr(self.plugin[name], 'post_inited'):
if hasattr(self.plugin[name], 'post_init'):