Skip to content

Commit dcd23ad

Browse files
author
‘Java
committed
test commit
1 parent 074c40a commit dcd23ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

xslt_op/xslt_transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def convert(input_xml, transformation, output_xml):
1010
transform = ET.XSLT(xslt)
1111
result = transform(dom)
1212
infile = ET.tostring(result, pretty_print=True, encoding='unicode')
13-
outfile = open('output.xml', 'a')
13+
outfile = open(output_xml, 'a')
1414
outfile.write(infile)
1515

1616

0 commit comments

Comments
 (0)