From 7218bb44997b8b3cc5bed114f6bfc668d1e7d913 Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Sat, 28 Mar 2020 04:42:23 +0000 Subject: cElementTree has been deprecated since Python 3.3 and removed in Python 3.9. --- slixmpp/plugins/xep_0009/stanza/RPC.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slixmpp/plugins') 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): -- cgit v1.2.3