summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0009/stanza/RPC.py
diff options
context:
space:
mode:
authorKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-03-28 04:42:23 +0000
committerKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-03-28 04:42:23 +0000
commit7218bb44997b8b3cc5bed114f6bfc668d1e7d913 (patch)
tree9028952956a982fd0ff025058706cd583186b640 /slixmpp/plugins/xep_0009/stanza/RPC.py
parent115c234527217bef1adf9e2ce611971d59905d57 (diff)
downloadslixmpp-7218bb44997b8b3cc5bed114f6bfc668d1e7d913.tar.gz
slixmpp-7218bb44997b8b3cc5bed114f6bfc668d1e7d913.tar.bz2
slixmpp-7218bb44997b8b3cc5bed114f6bfc668d1e7d913.tar.xz
slixmpp-7218bb44997b8b3cc5bed114f6bfc668d1e7d913.zip
cElementTree has been deprecated since Python 3.3 and removed in Python 3.9.
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):