summaryrefslogtreecommitdiff
path: root/poezio/core/commands.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/commands.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/commands.py')
-rw-r--r--poezio/core/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/commands.py b/poezio/core/commands.py
index f3498ed9..b00cf24a 100644
--- a/poezio/core/commands.py
+++ b/poezio/core/commands.py
@@ -3,7 +3,7 @@ Global commands which are to be linked to the Core class
"""
import asyncio
-from xml.etree import cElementTree as ET
+from xml.etree import ElementTree as ET
from typing import List, Optional, Tuple
import logging