From 8ceb23621d7e59718c1d512155aae8e8eb17db56 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 26 Mar 2020 15:17:37 -0400 Subject: Replace calls to deprecated xml.etree.cElementTree cElementTree was removed in Python 3.9 in favor of ElementTree, which has used a fast, native implementation since Python 3.3. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1817649 Signed-off-by: Stephen Gallagher --- giscanner/girparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'giscanner/girparser.py') diff --git a/giscanner/girparser.py b/giscanner/girparser.py index 0a6c687b..35206a41 100644 --- a/giscanner/girparser.py +++ b/giscanner/girparser.py @@ -21,7 +21,7 @@ import os from collections import OrderedDict -from xml.etree.cElementTree import parse +from xml.etree.ElementTree import parse from . import ast from .girwriter import COMPATIBLE_GIR_VERSION -- cgit v1.2.1