diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-10 10:44:53 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-10 10:44:53 -0800 |
commit | e5fc59a4c697a201d8644a98f0e4c3dbe69e0a5e (patch) | |
tree | 8c6e331f44aead3ba3bfe062274c0f11c2de9db2 /sleekxmpp/plugins | |
parent | 549a9ab472263cdf1b045caa8791926071547e95 (diff) | |
download | slixmpp-e5fc59a4c697a201d8644a98f0e4c3dbe69e0a5e.tar.gz slixmpp-e5fc59a4c697a201d8644a98f0e4c3dbe69e0a5e.tar.bz2 slixmpp-e5fc59a4c697a201d8644a98f0e4c3dbe69e0a5e.tar.xz slixmpp-e5fc59a4c697a201d8644a98f0e4c3dbe69e0a5e.zip |
Ensure post init works for XEP-0118.
Diffstat (limited to 'sleekxmpp/plugins')
-rw-r--r-- | sleekxmpp/plugins/xep_0118/user_tune.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0118/user_tune.py b/sleekxmpp/plugins/xep_0118/user_tune.py index 5beb7bc4..1089faad 100644 --- a/sleekxmpp/plugins/xep_0118/user_tune.py +++ b/sleekxmpp/plugins/xep_0118/user_tune.py @@ -30,6 +30,7 @@ class xep_0118(base_plugin): self.stanza = stanza def post_init(self): + base_plugin.post_init(self) pubsub_stanza = self.xmpp['xep_0060'].stanza register_stanza_plugin(pubsub_stanza.EventItem, UserTune) self.xmpp['xep_0163'].add_interest(UserTune.namespace) |