use fmt pkg for Errorf call in httpgetter.go

Signed-off-by: James Sheppard <jgsheppa@protonmail.com>
pull/12063/head
James Sheppard 2 years ago
parent 1ca5ce0da1
commit 475a3cb087

@ -18,6 +18,7 @@ package getter
import ( import (
"bytes" "bytes"
"crypto/tls" "crypto/tls"
"fmt"
"io" "io"
"net/http" "net/http"
"net/url" "net/url"
@ -89,7 +90,7 @@ func (g *HTTPGetter) get(href string) (*bytes.Buffer, error) {
} }
defer resp.Body.Close() defer resp.Body.Close()
if resp.StatusCode != http.StatusOK { if resp.StatusCode != http.StatusOK {
return nil, errors.Errorf("failed to fetch %s : %s", href, resp.Status) return nil, fmt.Errorf("failed to fetch %s : %s", href, resp.Status)
} }
buf := bytes.NewBuffer(nil) buf := bytes.NewBuffer(nil)

Loading…
Cancel
Save