Merge pull request #3159 from tirkarthi/fix-xml
Use ElementTree instead of deprecated cElementTree.
This commit is contained in:
commit
75804924f2
|
@ -14,7 +14,7 @@ import sys
|
||||||
import tarfile
|
import tarfile
|
||||||
import unicodedata
|
import unicodedata
|
||||||
import wave
|
import wave
|
||||||
import xml.etree.cElementTree as ET
|
import xml.etree.ElementTree as ET
|
||||||
from collections import Counter
|
from collections import Counter
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from multiprocessing.pool import ThreadPool
|
from multiprocessing.pool import ThreadPool
|
||||||
|
|
|
@ -9,7 +9,7 @@ import os
|
||||||
import tarfile
|
import tarfile
|
||||||
import unicodedata
|
import unicodedata
|
||||||
import wave
|
import wave
|
||||||
import xml.etree.cElementTree as ET
|
import xml.etree.ElementTree as ET
|
||||||
from collections import Counter
|
from collections import Counter
|
||||||
|
|
||||||
import progressbar
|
import progressbar
|
||||||
|
|
Loading…
Reference in New Issue