Fix signature of init_plugins() function
This commit is contained in:
parent
c2f6f07776
commit
4328762076
1 changed files with 1 additions and 1 deletions
|
@ -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'):
|
||||
|
|
Loading…
Reference in a new issue