Log xml files we render.

We seem to be missing some tests here (?)
This commit is contained in:
Michael Kaye 2022-02-25 11:07:03 +00:00
parent 9ddcaffebf
commit 0ce59989a5

View file

@ -10,7 +10,10 @@ import xml.etree.ElementTree as ET
suitename = sys.argv[1]
xmlfiles = sys.argv[2:]
print(f"Arguments: {sys.argv}")
for xmlfile in xmlfiles:
print(f"Handling: {xmlfile}")
tree = ET.parse(xmlfile)
root = tree.getroot()