Revision 302
Added by Aaron Marcuse-Kubitza almost 13 years ago
map | ||
---|---|---|
167 | 167 |
def use_row(root): pass # TODO: implement this |
168 | 168 |
output = sys.stdout |
169 | 169 |
doc1 = get_xml(use_row) |
170 |
xml_dom.writexml(output, doc1)
|
|
170 |
doc1.writeprettyxml(output)
|
|
171 | 171 |
|
172 | 172 |
try: main() |
173 | 173 |
except Parser.SyntaxException, e: raise SystemExit(str(e)) |
Also available in: Unified diff
bin/map: Use Node.writeprettyxml() instead of xml_dom.writexml()