From 56478760692e60ac14553309c8013ee308fbb38d Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Mon, 20 Feb 2017 13:58:51 +0100 Subject: [PATCH] cmd/geth: govet yo momma --- cmd/geth/bugcmd.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/geth/bugcmd.go b/cmd/geth/bugcmd.go index a7be0e8c4a..f218805016 100644 --- a/cmd/geth/bugcmd.go +++ b/cmd/geth/bugcmd.go @@ -56,8 +56,7 @@ func reportBug(ctx *cli.Context) error { // open a new GH issue if !browser.Open(issueUrl + "?body=" + url.QueryEscape(buff.String())) { - fmt.Println("Please file a new issue at", issueUrl, "using this template:\n") - fmt.Println(buff.String()) + fmt.Printf("Please file a new issue at %s using this template:\n%s", issueUrl, buff.String()) } return nil }