From e3cecb7d56895bdfa8dbecfbdf82d6d6acf00b0c Mon Sep 17 00:00:00 2001 From: Kristin Laemmert Date: Tue, 4 Dec 2018 11:37:22 -0800 Subject: [PATCH] format/state: added missing newline in the `outputs` output (#19542) --- command/format/state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/format/state.go b/command/format/state.go index a85a5bb7eb..fce290bd6c 100644 --- a/command/format/state.go +++ b/command/format/state.go @@ -73,6 +73,7 @@ func State(opts *StateOpts) string { v := m.OutputValues[k] p.buf.WriteString(fmt.Sprintf("%s = ", k)) p.writeValue(v.Value, plans.NoOp, 0) + p.buf.WriteString("\n\n") } }