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_0004.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_0004.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0004.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0004.py b/sleekxmpp/plugins/xep_0004.py index 24ffa978..56d18929 100644 --- a/sleekxmpp/plugins/xep_0004.py +++ b/sleekxmpp/plugins/xep_0004.py @@ -31,6 +31,7 @@ class xep_0004(base.base_plugin): self.xmpp.add_handler("<message><x xmlns='jabber:x:data' /></message>", self.handler_message_xform) def post_init(self): + base.base_plugin.post_init(self) self.xmpp.plugin['xep_0030'].add_feature('jabber:x:data') def handler_message_xform(self, xml): |