summaryrefslogtreecommitdiff
path: root/poezio/multiuserchat.py
diff options
context:
space:
mode:
authorMaxime Buquet <pep@bouah.net>2020-03-30 19:11:00 +0200
committerMaxime Buquet <pep@bouah.net>2020-03-30 19:11:00 +0200
commit3f297195b0f7339aeb0df7d60b1eafb5933acc3a (patch)
treef74a0ba27edf99e0f8d4b60b51291bb180e69edc /poezio/multiuserchat.py
parent1f014b6bfb4fac60a22a09949abb5a65d33759f7 (diff)
parent81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01 (diff)
downloadpoezio-3f297195b0f7339aeb0df7d60b1eafb5933acc3a.tar.gz
poezio-3f297195b0f7339aeb0df7d60b1eafb5933acc3a.tar.bz2
poezio-3f297195b0f7339aeb0df7d60b1eafb5933acc3a.tar.xz
poezio-3f297195b0f7339aeb0df7d60b1eafb5933acc3a.zip
Merge branch 'fix-xml' into 'master'
cElementTree has been deprecated since Python 3.3 and removed in Python 3.9. See merge request poezio/poezio!74
Diffstat (limited to 'poezio/multiuserchat.py')
-rw-r--r--poezio/multiuserchat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/multiuserchat.py b/poezio/multiuserchat.py
index 47244e3d..30c36a77 100644
--- a/poezio/multiuserchat.py
+++ b/poezio/multiuserchat.py
@@ -10,7 +10,7 @@ Add some facilities that are not available on the XEP_0045
slix plugin
"""
-from xml.etree import cElementTree as ET
+from xml.etree import ElementTree as ET
from poezio.common import safeJID
from slixmpp import JID