diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-05-26 10:51:51 -0700 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2010-05-26 10:51:51 -0700 |
commit | f4bc9d9722ea57b5f5d22efeb6bc65cb990e1053 (patch) | |
tree | 0b10ae2046996ce19efc29a701fc4cb9ed86c2d1 /sleekxmpp/plugins/xep_0199.py | |
parent | 9cfe19c1e14f7045684ed523b65cdbdf3ab48b2e (diff) | |
download | slixmpp-f4bc9d9722ea57b5f5d22efeb6bc65cb990e1053.tar.gz slixmpp-f4bc9d9722ea57b5f5d22efeb6bc65cb990e1053.tar.bz2 slixmpp-f4bc9d9722ea57b5f5d22efeb6bc65cb990e1053.tar.xz slixmpp-f4bc9d9722ea57b5f5d22efeb6bc65cb990e1053.zip |
plugins now are checked for post_init having ran when process() is called
Diffstat (limited to 'sleekxmpp/plugins/xep_0199.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0199.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0199.py b/sleekxmpp/plugins/xep_0199.py index 9b10b927..ccaf0b3a 100644 --- a/sleekxmpp/plugins/xep_0199.py +++ b/sleekxmpp/plugins/xep_0199.py @@ -35,6 +35,7 @@ class xep_0199(base.base_plugin): #self.xmpp.add_event_handler('session_start', self.handler_pingserver, threaded=True) def post_init(self): + base.base_plugin.post_init(self) self.xmpp.plugin['xep_0030'].add_feature('http://www.xmpp.org/extensions/xep-0199.html#ns') def handler_pingserver(self, xml): |