removing the redundent newline warnings

This commit is contained in:
George Shaw 2017-12-05 13:07:27 -06:00
parent 7f5b8b6420
commit b4e16a6841

View file

@ -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")
}