From b4e16a6841f76cc76960b29fbadd1c68e443e146 Mon Sep 17 00:00:00 2001 From: George Shaw Date: Tue, 5 Dec 2017 13:07:27 -0600 Subject: [PATCH] removing the redundent newline warnings --- pkg/gpserver/defaults.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/gpserver/defaults.go b/pkg/gpserver/defaults.go index 8677809..046a066 100644 --- a/pkg/gpserver/defaults.go +++ b/pkg/gpserver/defaults.go @@ -35,6 +35,6 @@ func (con *Controller) setDefaults() { return } - fmt.Println("Since there are no stored users for the server upon startup the default user \"root\" has been set with the password \"root\"\n") - fmt.Println("Upon your first time logging into the gPanel Server please either create a new user and delete the user root, or change the user root's password to something more secure.\n") + fmt.Print("Since there are no stored users for the server upon startup the default user \"root\" has been set with the password \"root\"\n\n") + fmt.Print("Upon your first time logging into the gPanel Server please either create a new user and delete the user root, or change the user root's password to something more secure.\n\n") }