diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-21 17:50:29 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-21 17:50:29 +0200 |
commit | 4328762076e633723c41429cba92c85bc84e9910 (patch) | |
tree | f213aaa727cb27510d6915248f0bbfd7350b8101 | |
parent | c2f6f077762282d311a6f876f94cc1a4eb9e805f (diff) | |
download | slixmpp-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.py | 2 |
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'): |