summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0257
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-12-11 14:41:42 +0100
committermathieui <mathieui@mathieui.net>2014-12-11 18:32:50 +0100
commit063e73c0d23d9729e9fb8b4bf4e6d8bd5b959c17 (patch)
tree2d3e380a4cf385b3c3a05e4b1040307385700670 /sleekxmpp/plugins/xep_0257
parent27582f6fd29e365253e7f3bf2e318a5403da9b73 (diff)
downloadslixmpp-063e73c0d23d9729e9fb8b4bf4e6d8bd5b959c17.tar.gz
slixmpp-063e73c0d23d9729e9fb8b4bf4e6d8bd5b959c17.tar.bz2
slixmpp-063e73c0d23d9729e9fb8b4bf4e6d8bd5b959c17.tar.xz
slixmpp-063e73c0d23d9729e9fb8b4bf4e6d8bd5b959c17.zip
Fix the element name for retrieving certs in XEP-0257
And s/258/257/ in the XEP description
Diffstat (limited to 'sleekxmpp/plugins/xep_0257')
-rw-r--r--sleekxmpp/plugins/xep_0257/stanza.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0257/stanza.py b/sleekxmpp/plugins/xep_0257/stanza.py
index 17e20136..c3c41db2 100644
--- a/sleekxmpp/plugins/xep_0257/stanza.py
+++ b/sleekxmpp/plugins/xep_0257/stanza.py
@@ -10,7 +10,7 @@ from sleekxmpp.xmlstream import ElementBase, ET, register_stanza_plugin
class Certs(ElementBase):
- name = 'query'
+ name = 'items'
namespace = 'urn:xmpp:saslcert:1'
plugin_attrib = 'sasl_certs'
interfaces = set()