From a00be40db25c4503c1e823aa315a136258c498cd Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Wed, 27 Apr 2016 14:24:26 +0100 Subject: [PATCH] etcdctl: Add a newline so that errors don't bleed into each other. --- etcdctl/ctlv2/command/exec_watch_command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcdctl/ctlv2/command/exec_watch_command.go b/etcdctl/ctlv2/command/exec_watch_command.go index 5c89cca59..7c61cae23 100644 --- a/etcdctl/ctlv2/command/exec_watch_command.go +++ b/etcdctl/ctlv2/command/exec_watch_command.go @@ -97,7 +97,7 @@ func execWatchCommandFunc(c *cli.Context, ki client.KeysAPI) { handleError(ExitServerError, err) } if resp.Node.Dir { - fmt.Fprintf(os.Stderr, "Ignored dir %s change", resp.Node.Key) + fmt.Fprintf(os.Stderr, "Ignored dir %s change\n", resp.Node.Key) continue }