From 9596271b36bc70761651ac28ba77e1a232d89a79 Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Fri, 14 Aug 2015 12:02:32 +0100 Subject: [PATCH] Code formatted via gofmt --- command/output.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/command/output.go b/command/output.go index 5c5ddc5b8..33e6b6fcf 100644 --- a/command/output.go +++ b/command/output.go @@ -76,13 +76,13 @@ func (c *OutputCommand) Run(args []string) int { if name == "" { ks := make([]string, 0, len(mod.Outputs)) for k, _ := range mod.Outputs { - ks = append(ks, k) + ks = append(ks, k) } sort.Strings(ks) for _, k := range ks { - v := mod.Outputs[k] - c.Ui.Output(fmt.Sprintf("%s = %s", k, v)) + v := mod.Outputs[k] + c.Ui.Output(fmt.Sprintf("%s = %s", k, v)) } return 0 }