diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-05-27 01:51:51 +0800 |
---|---|---|
committer | Thom Nichols <tmnichols@gmail.com> | 2010-06-01 22:07:51 +0800 |
commit | a2719b0bb0d4ac26f30c462e6eebb32965637d34 (patch) | |
tree | efff1e464a619bb95b693c615b0ee67c84a37ef9 /sleekxmpp/plugins/xep_0092.py | |
parent | 71ad715caaeb43517e5175380d3256d8a8cf1141 (diff) | |
download | slixmpp-a2719b0bb0d4ac26f30c462e6eebb32965637d34.tar.gz slixmpp-a2719b0bb0d4ac26f30c462e6eebb32965637d34.tar.bz2 slixmpp-a2719b0bb0d4ac26f30c462e6eebb32965637d34.tar.xz slixmpp-a2719b0bb0d4ac26f30c462e6eebb32965637d34.zip |
plugins now are checked for post_init having ran when process() is called
Diffstat (limited to 'sleekxmpp/plugins/xep_0092.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0092.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0092.py b/sleekxmpp/plugins/xep_0092.py index ca0d7e17..aeebbe0c 100644 --- a/sleekxmpp/plugins/xep_0092.py +++ b/sleekxmpp/plugins/xep_0092.py @@ -33,6 +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): + base.base_plugin.post_init(self) self.xmpp.plugin['xep_0030'].add_feature('jabber:iq:version') def report_version(self, xml): |