From 4328762076e633723c41429cba92c85bc84e9910 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Mon, 21 Jul 2014 17:50:29 +0200 Subject: Fix signature of init_plugins() function --- slixmpp/basexmpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'): -- cgit v1.2.3