Fixed error registering a plugin. To add a feature to another plugin, it should look into xmpp.plugin dict

This commit is contained in:
Hernan E Grecco
2010-05-26 06:10:34 +08:00
committed by Thom Nichols
parent 8b3b8aca9e
commit d452085049
4 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ class xep_0092(base.base_plugin):
self.xmpp.add_handler("<iq type='get' xmlns='%s'><query xmlns='jabber:iq:version' /></iq>" % self.xmpp.default_ns, self.report_version)
def post_init(self):
self.xmpp['xep_0030'].add_feature('jabber:iq:version')
self.xmpp.plugin['xep_0030'].add_feature('jabber:iq:version')
def report_version(self, xml):
iq = self.xmpp.makeIqResult(xml.get('id', 'unknown'))