1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
tcl_ota_check/tcllib/xmltools.py

10 lines
205 B
Python

# -*- coding: utf-8 -*-
import xml.dom.minidom
class XmlTools:
@staticmethod
def pretty_xml(xmlstr):
mdx = xml.dom.minidom.parseString(xmlstr)
return mdx.toprettyxml(indent=" ")