summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0009/stanza/RPC.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-04-04 17:55:11 +0200
committermathieui <mathieui@mathieui.net>2020-04-04 17:55:11 +0200
commit98108d0445575c2de5701accaab3afabd9f6c500 (patch)
tree811490670b3fd429b25b2615e475dcf5edb71a48 /slixmpp/plugins/xep_0009/stanza/RPC.py
parent76f4fb49d6ad44ccafb97748183ce04986f82cda (diff)
parent7218bb44997b8b3cc5bed114f6bfc668d1e7d913 (diff)
downloadslixmpp-98108d0445575c2de5701accaab3afabd9f6c500.tar.gz
slixmpp-98108d0445575c2de5701accaab3afabd9f6c500.tar.bz2
slixmpp-98108d0445575c2de5701accaab3afabd9f6c500.tar.xz
slixmpp-98108d0445575c2de5701accaab3afabd9f6c500.zip
Merge branch 'fix-celementtree-import' into 'master'
cElementTree has been deprecated since Python 3.3 and removed in Python 3.9. See merge request poezio/slixmpp!38
Diffstat (limited to 'slixmpp/plugins/xep_0009/stanza/RPC.py')
-rw-r--r--slixmpp/plugins/xep_0009/stanza/RPC.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0009/stanza/RPC.py b/slixmpp/plugins/xep_0009/stanza/RPC.py
index f8cec481..542c839c 100644
--- a/slixmpp/plugins/xep_0009/stanza/RPC.py
+++ b/slixmpp/plugins/xep_0009/stanza/RPC.py
@@ -7,7 +7,7 @@
"""
from slixmpp.xmlstream.stanzabase import ElementBase
-from xml.etree import cElementTree as ET
+from xml.etree import ElementTree as ET
class RPCQuery(ElementBase):