From b25bf0c0c97d3c87ba6668796bf827d8fce04d9f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 24 Mar 2013 16:36:02 -0700 Subject: [PATCH] Format --- packer/environment.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/environment.go b/packer/environment.go index 246424406..0cfc93fab 100644 --- a/packer/environment.go +++ b/packer/environment.go @@ -107,7 +107,7 @@ func (e *Environment) PrintHelp() { command := e.command[key] // Pad the key with spaces so that they're all the same width - key = fmt.Sprintf("%v%v", key, strings.Repeat(" ", maxKeyLen - len(key))) + key = fmt.Sprintf("%v%v", key, strings.Repeat(" ", maxKeyLen-len(key))) // Output the command and the synopsis e.ui.Say(" %v %v\n", key, command.Synopsis())