Remove superfluous indentation

This commit is contained in:
joeduffy 2017-02-28 16:30:20 -08:00
parent 954fd9ae78
commit 632bb357da

View file

@ -800,7 +800,7 @@ func printPropertyValueDiff(b *bytes.Buffer, title func(string), diff resource.V
printPropertyValue(b, delete, deleteIndent(newIndent))
b.WriteString(colors.Reset)
} else if update, isupdate := a.Updates[i]; isupdate {
printPropertyValueDiff(b, title, update, newIndent)
printPropertyValueDiff(b, title, update, indent)
} else {
title(indent)
printPropertyValue(b, a.Sames[i], newIndent)