From e1325a2681155cbeba60ccdd639eadde4d0a3f41 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Sun, 23 May 2021 16:43:27 -0500 Subject: [PATCH] Prefer two spaces over a tab Goes with BroadOn's presumed XML standards. --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index c42c013..f9b348f 100644 --- a/utils.go +++ b/utils.go @@ -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) }