1
0
mirror of https://github.com/vector-im/element-android.git synced 2025-07-31 07:04:23 +03:00

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()