diff options
author | Thom Nichols <tmnichols@gmail.com> | 2010-06-01 22:54:30 -0400 |
---|---|---|
committer | Thom Nichols <tmnichols@gmail.com> | 2010-06-01 22:54:30 -0400 |
commit | 49f5767aea2815211349d93aa03ce2b9dc088c1e (patch) | |
tree | 3a63f08d009dc7d16560ac2fc464482649b4cd47 /sleekxmpp/plugins/xep_0009.py | |
parent | 3e83b16a586b34dd686a4aeaea77c50a92f54b51 (diff) | |
parent | e6c2fde2834fafbc35b52da7e523f2b351f53a15 (diff) | |
download | slixmpp-49f5767aea2815211349d93aa03ce2b9dc088c1e.tar.gz slixmpp-49f5767aea2815211349d93aa03ce2b9dc088c1e.tar.bz2 slixmpp-49f5767aea2815211349d93aa03ce2b9dc088c1e.tar.xz slixmpp-49f5767aea2815211349d93aa03ce2b9dc088c1e.zip |
merged changes from fritzy
Diffstat (limited to 'sleekxmpp/plugins/xep_0009.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0009.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0009.py b/sleekxmpp/plugins/xep_0009.py index e0da8296..49ffac41 100644 --- a/sleekxmpp/plugins/xep_0009.py +++ b/sleekxmpp/plugins/xep_0009.py @@ -185,8 +185,9 @@ class xep_0009(base.base_plugin): self.activeCalls = []
def post_init(self):
- self.xmpp['xep_0030'].add_feature('jabber:iq:rpc')
- self.xmpp['xep_0030'].add_identity('automatition','rpc')
+ base.base_plugin.post_init(self)
+ self.xmpp.plugin['xep_0030'].add_feature('jabber:iq:rpc')
+ self.xmpp.plugin['xep_0030'].add_identity('automatition','rpc')
def register_call(self, method, name=None):
#@returns an string that can be used in acl commands.
|