We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 074c40a commit dcd23adCopy full SHA for dcd23ad
1 file changed
xslt_op/xslt_transform.py
@@ -10,7 +10,7 @@ def convert(input_xml, transformation, output_xml):
10
transform = ET.XSLT(xslt)
11
result = transform(dom)
12
infile = ET.tostring(result, pretty_print=True, encoding='unicode')
13
- outfile = open('output.xml', 'a')
+ outfile = open(output_xml, 'a')
14
outfile.write(infile)
15
16
0 commit comments