From a59bff97c4e02bb8914fc419eb36434babcba91a Mon Sep 17 00:00:00 2001 From: tariqibrahim Date: Sat, 3 Nov 2018 22:19:51 -0700 Subject: [PATCH] fix missing formatting character error in wrapf statement Signed-off-by: tariqibrahim --- cmd/helm/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/init.go b/cmd/helm/init.go index 14fa8d6d5..391d1cf93 100644 --- a/cmd/helm/init.go +++ b/cmd/helm/init.go @@ -147,7 +147,7 @@ func initRepo(url, cacheFile string, out io.Writer, skipRefresh bool, home helmp // In this case, the cacheFile is always absolute. So passing empty string // is safe. if err := r.DownloadIndexFile(""); err != nil { - return nil, errors.Wrapf(err, "looks like %q is not a valid chart repository or cannot be reached: %s", url) + return nil, errors.Wrapf(err, "%s is not a valid chart repository or cannot be reached", url) } return &c, nil