From 2a8f0e0b748747f660c565a46466e7930b509e6d Mon Sep 17 00:00:00 2001 From: Pagran <67878280+pagran@users.noreply.github.com> Date: Tue, 22 Sep 2020 15:48:52 +0300 Subject: [PATCH] Revert %q --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index e051d6f..5db486a 100644 --- a/main.go +++ b/main.go @@ -287,7 +287,7 @@ How to install Go: https://golang.org/doc/install version := "v" + strings.TrimPrefix(tag, "go") if semver.Compare(version, minGoVersion) < 0 { - fmt.Fprintf(os.Stderr, "Outdated Go version %s is used, please upgrade Go to %s", version, supportedGoVersions) + fmt.Fprintf(os.Stderr, "Outdated Go version %q is used, please upgrade Go to %s", version, supportedGoVersions) return false }