mirror of
https://github.com/mbirth/tcl_ota_check.git
synced 2024-11-10 06:16:46 +00:00
15 lines
293 B
Python
15 lines
293 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# pylint: disable=C0111,C0326,C0103
|
|
|
|
"""XML tools."""
|
|
|
|
import xml.dom.minidom
|
|
|
|
|
|
def pretty_xml(xmlstr):
|
|
"""Prettify input XML with ``xml.dom.minidom``."""
|
|
mdx = xml.dom.minidom.parseString(xmlstr)
|
|
return mdx.toprettyxml(indent=" ")
|