Skip to content

Commit 14f5e4c

Browse files
committed
QPR-13744 QPR-13463: fix
1 parent ff8017b commit 14f5e4c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

Tools/xsl/reformat_junit.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,5 @@ def parseXML(input_file):
147147
main_args = argparser.parse_args()
148148
input_file = main_args.file
149149

150-
for p in inputs:
151-
if os.path.exists(p):
152-
parseXML(p)
150+
if os.path.exists(input_file):
151+
parseXML(input_file)

0 commit comments

Comments
 (0)