From 0efa8514b4a63d1d5e00b133c0812dbabe172da3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hauke=20L=C3=B6ffler?= Date: Mon, 30 Jan 2017 09:02:35 +0100 Subject: [PATCH] Remove cute error message Address issue #151 --- 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 57b59b6c46..297d442eb7 100644 --- a/cmd/dep/init.go +++ b/cmd/dep/init.go @@ -196,7 +196,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("ouchie, solve error: %s", err) + fmt.Printf("solve error: %s", err) } func writeFile(path string, in json.Marshaler) error {