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) }