From 9b090a5505edfdf1a08ef2f6534ae0c2e560bfdd Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 12 Jul 2014 21:02:53 -0700 Subject: [PATCH] command/apply: use new state formatting --- command/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/apply.go b/command/apply.go index d87e1954e..4922db4fd 100644 --- a/command/apply.go +++ b/command/apply.go @@ -120,7 +120,7 @@ func (c *ApplyCommand) Run(args []string) int { return 1 } - c.Ui.Output(strings.TrimSpace(state.String())) + c.Ui.Output(FormatState(state, c.Colorize())) return 0 }