From 08044ae5e53a1d9e7a80b46cdafbf15099404745 Mon Sep 17 00:00:00 2001 From: Sydney Erickson <sydney@elixxir.io> Date: Fri, 28 Jun 2019 09:51:25 -0700 Subject: [PATCH] Add newline to error message about no gateways set in config --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index d310b7f5c..cd0c1093c 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -114,7 +114,7 @@ func sessionInitialization() *id.User { if len(gateways) < 1 { // No gateways in config file or passed via command line fmt.Printf("Error: No gateway specified! Add to" + - " configuration file or pass via command line using -g!") + " configuration file or pass via command line using -g!\n") return id.ZeroID } else { // List of gateways found in config file -- GitLab