Skip to content

Commit eac19ad

Browse files
authored
Merge pull request #212 from andylolz/fix-xml-unflattening-stdlib-etree
[COMPLETE] Fix XML unflattening with stdlib etree
2 parents ba7727e + ce9d4a6 commit eac19ad

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99
### Fixed
1010

1111
- Avoid some openpyxl warnings https://github.com/OpenDataServices/flatten-tool/pull/211
12+
- Fix XML unflattening with stdlib etree https://github.com/OpenDataServices/flatten-tool/pull/212
1213

1314
## [0.1.2] - 2018-06-28
1415

flattentool/xml_output.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,4 @@ def toxml(data, xml_root_tag):
8181
if USING_LXML:
8282
return ET.tostring(root, pretty_print=True)
8383
else:
84-
indent(root)
8584
return ET.tostring(root)

0 commit comments

Comments
 (0)