command: better whitespace in state formatting

This commit is contained in:
Mitchell Hashimoto 2014-07-13 09:23:59 -07:00
parent 2bf6f380dc
commit 00ebedb4fb
1 changed files with 1 additions and 1 deletions

View File

@ -78,5 +78,5 @@ func FormatState(s *terraform.State, c *colorstring.Colorize) string {
}
}
return strings.TrimSpace(c.Color(buf.String()))
return c.Color(strings.TrimSpace(buf.String()))
}