Prefer two spaces over a tab

Goes with BroadOn's presumed XML standards.
This commit is contained in:
Spotlight 2021-05-23 16:43:27 -05:00
parent 80601c7788
commit e1325a2681
No known key found for this signature in database
GPG Key ID: 874AA355B3209BDC

View File

@ -185,7 +185,7 @@ func (e *Envelope) becomeXML() (bool, string) {
// If we're in debug mode, pretty print XML.
if isDebug {
contents, err = xml.MarshalIndent(e, "", "\t")
contents, err = xml.MarshalIndent(e, "", " ")
} else {
contents, err = xml.Marshal(e)
}