summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2020-04-06 12:57:02 +0200
committerMaxime “pep” Buquet <pep@bouah.net>2020-04-06 12:57:12 +0200
commitc3fbc6cb80902102a9f73ffab72e0ebd52c912af (patch)
tree83b74ddece1604abdc9a9c3a2190e097dc2a82c4
parent355d7890614a2f00549f735878db141eca7a2fd9 (diff)
downloadslixmpp-c3fbc6cb80902102a9f73ffab72e0ebd52c912af.tar.gz
slixmpp-c3fbc6cb80902102a9f73ffab72e0ebd52c912af.tar.bz2
slixmpp-c3fbc6cb80902102a9f73ffab72e0ebd52c912af.tar.xz
slixmpp-c3fbc6cb80902102a9f73ffab72e0ebd52c912af.zip
xep_0196: Use correct tag local name (thanks ivucica)
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r--slixmpp/plugins/xep_0196/stanza.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0196/stanza.py b/slixmpp/plugins/xep_0196/stanza.py
index 79f5621e..756208b2 100644
--- a/slixmpp/plugins/xep_0196/stanza.py
+++ b/slixmpp/plugins/xep_0196/stanza.py
@@ -11,10 +11,9 @@ from slixmpp.xmlstream import ElementBase, ET
class UserGaming(ElementBase):
- name = 'gaming'
+ name = 'game'
namespace = 'urn:xmpp:gaming:0'
plugin_attrib = 'gaming'
interfaces = {'character_name', 'character_profile', 'name',
'level', 'server_address', 'server_name', 'uri'}
sub_interfaces = interfaces
-