martinblech/xmltodict

unparse pretty should prettify namespaces as well

ajslater opened this issue · 0 comments

Current output:

<comet xmlns:comet="http://www.denvog.com/comet/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.denvog.com/comet/comet.xsd">
</comet>

Desirable output:

<comet
  xmlns:comet="http://www.denvog.com/comet/"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.denvog.com/comet/comet.xsd"
>
</comet>