Remove the printing of file name to the log as it's doubling up information.

This commit is contained in:
Michael Kaye 2022-03-03 20:39:41 +00:00
parent 7837d1d6d6
commit 2d5b25cfad

View file

@ -13,7 +13,6 @@ print("::group::Arguments")
print(f"{sys.argv}")
print("::endgroup::")
for xmlfile in xmlfiles:
print(f"Handling: {xmlfile}")
tree = ET.parse(xmlfile)
root = tree.getroot()