Skip to content

Commit 2f79158

Browse files
authored
xml.etree.cElementTree was deprecated in Python 3.3 (#189)
https://docs.python.org/3/library/xml.etree.elementtree.html > _Deprecated since version 3.3_: The `xml.etree.cElementTree` module is deprecated.
1 parent acfb4e2 commit 2f79158

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylib/gyp/generator/eclipse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import gyp.common
2525
import gyp.msvs_emulation
2626
import shlex
27-
import xml.etree.cElementTree as ET
27+
import xml.etree.ElementTree as ET
2828

2929
generator_wants_static_library_dependencies_adjusted = False
3030

0 commit comments

Comments
 (0)