diff options
author | Lance Stout <lancestout@gmail.com> | 2010-12-21 11:33:03 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-12-21 11:33:03 -0500 |
commit | f97f6e5985b5781ce87a2095b4bf9cccb12ae978 (patch) | |
tree | 4605bfafeb83777913e94571c67894b5230cf80c /sleekxmpp/plugins/xep_0030/disco.py | |
parent | 34c374a1e1dad468869c8e5dc6fb2ea7b1d90c7e (diff) | |
download | slixmpp-f97f6e5985b5781ce87a2095b4bf9cccb12ae978.tar.gz slixmpp-f97f6e5985b5781ce87a2095b4bf9cccb12ae978.tar.bz2 slixmpp-f97f6e5985b5781ce87a2095b4bf9cccb12ae978.tar.xz slixmpp-f97f6e5985b5781ce87a2095b4bf9cccb12ae978.zip |
More documentation for XEP-0030 plugin.
Diffstat (limited to 'sleekxmpp/plugins/xep_0030/disco.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0030/disco.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0030/disco.py b/sleekxmpp/plugins/xep_0030/disco.py index 1b78d522..92ee5ec6 100644 --- a/sleekxmpp/plugins/xep_0030/disco.py +++ b/sleekxmpp/plugins/xep_0030/disco.py @@ -108,7 +108,8 @@ class xep_0030(base_plugin): self._disco_ops = ['get_info', 'set_identities', 'set_features', 'get_items', 'set_items', 'del_items', 'add_identity', 'del_identity', 'add_feature', - 'del_feature', 'add_item', 'del_item'] + 'del_feature', 'add_item', 'del_item', + 'del_identities', 'del_features'] self._handlers = {} for op in self._disco_ops: self._handlers[op] = {'global': getattr(self.static, op), @@ -141,8 +142,10 @@ class xep_0030(base_plugin): set_features set_items del_items + del_identities del_identity del_feature + del_features del_item add_identity add_feature |