From fcd866731b290df1cc083734372349dfe2fb3708 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 2 Jun 2013 11:52:49 -0700 Subject: [PATCH] packer: Remove extra newline on version --- packer/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/version.go b/packer/version.go index 923e46e10..70aeabef8 100644 --- a/packer/version.go +++ b/packer/version.go @@ -15,7 +15,7 @@ command-line flags for this command.` } func (versionCommand) Run(env Environment, args []string) int { - env.Ui().Say(fmt.Sprintf("Packer v%v\n", Version)) + env.Ui().Say(fmt.Sprintf("Packer v%v", Version)) return 0 }