command/members: API update for columnize

This commit is contained in:
Armon Dadgar 2014-04-16 16:21:05 -07:00
parent 335013cec7
commit aa2e2d415f
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ func (c *MembersCommand) Run(args []string) int {
}
// Generate the columnized version
output, _ := columnize.SimpleFormat(result)
output := columnize.SimpleFormat(result)
c.Ui.Output(string(output))
return 0