Skip to content

Commit

Permalink
Merge pull request #103 from SchrodingersGat/fix-xml-writer
Browse files Browse the repository at this point in the history
Fix XML writer output
  • Loading branch information
SchrodingersGat authored Jul 15, 2020
2 parents dae2583 + f91b3f0 commit df76b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kibom/xml_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def WriteXML(filename, groups, net, headings, prefs):

attrib[h] = str(row[i])

# sub = ElementTree.SubElement(xml, "group", attrib=attrib)
ElementTree.SubElement(xml, "group", attrib=attrib)

with open(filename, "w") as output:
out = ElementTree.tostring(xml, encoding="utf-8")
Expand Down

0 comments on commit df76b45

Please sign in to comment.