1
0
This repository has been archived on 2025-06-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcl_ota_check/tcllib/xmltools.py
T
2018-02-03 15:24:36 -05:00

11 lines
211 B
Python

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