From 81e0ca6dca7527ec7641ae9ac68bb1e4be4b3b01 Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Sun, 29 Mar 2020 14:39:02 +0000 Subject: cElementTree has been deprecated since Python 3.3 and removed in Python 3.9. --- poezio/core/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'poezio/core/commands.py') 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 -- cgit v1.2.3