Use LXML everywhere

This commit is contained in:
James Turner 2018-10-17 09:19:10 +00:00
parent a1f8e52ae8
commit 70dfd6b8d4
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,8 @@
import argparse
import datetime
import xml.etree.cElementTree as ET
#import xml.etree.cElementTree as ET
import lxml.etree as ET
import os
import re
import sgprops

View File

@ -2,7 +2,8 @@
from xml.sax import make_parser, handler, expatreader
# ElementTree for writing
import xml.etree.cElementTree as ET
#import xml.etree.cElementTree as ET
import lxml.etree as ET
import re, os