Browse Source

add new line after printing cli error

Alan Shreve 12 years ago
parent
commit
09a3021b24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/ngrok/client/cli.go

+ 1 - 1
src/ngrok/client/cli.go

@@ -26,7 +26,7 @@ type Options struct {
 
 func fail(msg string, args ...interface{}) {
 	//log.Error(msg, args..)
-	fmt.Printf(msg, args...)
+	fmt.Printf(msg + "\n", args...)
 	flag.PrintDefaults()
 	os.Exit(1)
 }