fixed ElementTree issue in python3

security-update
Andrew Port 2021-09-23 00:59:10 -07:00
parent 657a9d6745
commit 0c5dc9de1a
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ from __future__ import division, absolute_import, print_function
import os import os
import collections import collections
from defusedxml.cElementTree import parse, tostring from defusedxml.cElementTree import parse, tostring
from xml.etree.cElementTree import Element, SubElement, register_namespace from xml.etree.cElementTree import Element, SubElement, register_namespace, ElementTree
from defusedxml.minidom import parseString from defusedxml.minidom import parseString
import warnings import warnings
from tempfile import gettempdir from tempfile import gettempdir