summaryrefslogtreecommitdiff
path: root/poezio/core/core.py
diff options
context:
space:
mode:
authorKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-03-29 14:39:02 +0000
committerKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-03-29 14:39:02 +0000
commit81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01 (patch)
treef74a0ba27edf99e0f8d4b60b51291bb180e69edc /poezio/core/core.py
parent1f014b6bfb4fac60a22a09949abb5a65d33759f7 (diff)
downloadpoezio-81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01.tar.gz
poezio-81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01.tar.bz2
poezio-81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01.tar.xz
poezio-81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01.zip
cElementTree has been deprecated since Python 3.3 and removed in Python 3.9.
Diffstat (limited to 'poezio/core/core.py')
-rw-r--r--poezio/core/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index 6065f215..525d02a6 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -16,7 +16,7 @@ import time
import uuid
from collections import defaultdict
from typing import Callable, Dict, List, Optional, Set, Tuple, Type
-from xml.etree import cElementTree as ET
+from xml.etree import ElementTree as ET
from functools import partial
from slixmpp import JID, InvalidJID