summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0071/stanza.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-06 17:08:00 +0100
committermathieui <mathieui@mathieui.net>2020-12-06 17:08:00 +0100
commitbcd8cf085f528c602f78cba2c9eb2d784eb993da (patch)
treeb7d76a453597a5a6cbdc0347f21f4d9fdfa568d5 /slixmpp/plugins/xep_0071/stanza.py
parent73cc2a40082cf936221adb09cfe208bd06cd4b60 (diff)
parentcd4c9f82fc8d17726baa4b4a69c54151fb181f40 (diff)
downloadslixmpp-bcd8cf085f528c602f78cba2c9eb2d784eb993da.tar.gz
slixmpp-bcd8cf085f528c602f78cba2c9eb2d784eb993da.tar.bz2
slixmpp-bcd8cf085f528c602f78cba2c9eb2d784eb993da.tar.xz
slixmpp-bcd8cf085f528c602f78cba2c9eb2d784eb993da.zip
Merge branch 'no-ordered-stuff' into 'master'
Remove usage of OrderedDict See merge request poezio/slixmpp!77
Diffstat (limited to 'slixmpp/plugins/xep_0071/stanza.py')
-rw-r--r--slixmpp/plugins/xep_0071/stanza.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0071/stanza.py b/slixmpp/plugins/xep_0071/stanza.py
index 4c3380c4..47951976 100644
--- a/slixmpp/plugins/xep_0071/stanza.py
+++ b/slixmpp/plugins/xep_0071/stanza.py
@@ -8,7 +8,6 @@
from slixmpp.stanza import Message
from slixmpp.util import unicode
-from collections import OrderedDict
from slixmpp.xmlstream import ElementBase, ET, register_stanza_plugin, tostring
@@ -50,7 +49,7 @@ class XHTML_IM(ElementBase):
bodies = self.xml.findall('{%s}body' % XHTML_NS)
if lang == '*':
- result = OrderedDict()
+ result = {}
for body in bodies:
body_lang = body.attrib.get('{%s}lang' % self.xml_ns, '')
body_result = []