From 2da2ce4ad4d0cffc9d3cfb097d98f5623b2ae711 Mon Sep 17 00:00:00 2001 From: Ludovic Fauvet Date: Sat, 1 Aug 2015 16:00:46 +0200 Subject: [PATCH] cli: add missing new lines --- commands.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands.go b/commands.go index e5d9691b..9ab41614 100644 --- a/commands.go +++ b/commands.go @@ -234,12 +234,12 @@ func (c *cli) CmdAdd(args ...string) error { } if strings.Contains(cmd.Arg(0), " ") { - fmt.Fprintf(os.Stderr, "The identifier cannot contain a space") + fmt.Fprintf(os.Stderr, "The identifier cannot contain a space\n") os.Exit(-1) } if *http == "" { - fmt.Fprintf(os.Stderr, "You *must* pass at least an HTTP URL") + fmt.Fprintf(os.Stderr, "You *must* pass at least an HTTP URL\n") os.Exit(-1) }