From 4ccb660a69844adbdef4b276b0256430a92a76c5 Mon Sep 17 00:00:00 2001 From: Kris Nova Date: Tue, 7 Mar 2017 09:42:40 -0700 Subject: [PATCH] Adding a newline to the end of solve err --- cmd/dep/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dep/init.go b/cmd/dep/init.go index 46b6ec4fe1..484851aaa2 100644 --- a/cmd/dep/init.go +++ b/cmd/dep/init.go @@ -204,7 +204,7 @@ func isStdLib(path string) bool { // TODO solve failures can be really creative - we need to be similarly creative // in handling them and informing the user appropriately func handleAllTheFailuresOfTheWorld(err error) { - fmt.Printf("solve error: %s", err) + fmt.Printf("solve error: %s\n", err) } func writeFile(path string, in json.Marshaler) error {