From e648c9d1a166920acb99003d29348558eb97160b Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Tue, 6 Nov 2018 15:32:07 -0800 Subject: [PATCH] fix missing formatting character error in wrapf statement (#4881) 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 6924d4eb4..42d923e95 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", url) + return nil, errors.Wrapf(err, "%s is not a valid chart repository or cannot be reached", url) } return &c, nil