command/apply: use new state formatting

This commit is contained in:
Mitchell Hashimoto 2014-07-12 21:02:53 -07:00
parent 79c60e0331
commit 9b090a5505
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ func (c *ApplyCommand) Run(args []string) int {
return 1 return 1
} }
c.Ui.Output(strings.TrimSpace(state.String())) c.Ui.Output(FormatState(state, c.Colorize()))
return 0 return 0
} }