From 762a0cc4723917b4e6ca3731356e43c5e9a13f5f Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Wed, 8 Jan 2014 14:20:30 -0800 Subject: [PATCH] Cleanup utils.Download Docker-DCO-1.0-Signed-off-by: Guillaume J. Charmes (github: creack) --- utils/utils.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/utils/utils.go b/utils/utils.go index d5dbf35f0a..4dfadb793f 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -6,7 +6,6 @@ import ( "crypto/sha256" "encoding/hex" "encoding/json" - "errors" "fmt" "index/suffixarray" "io" @@ -46,14 +45,12 @@ func Go(f func() error) chan error { } // Request a given URL and return an io.Reader -func Download(url string) (*http.Response, error) { - var resp *http.Response - var err error +func Download(url string) (resp *http.Response, err error) { if resp, err = http.Get(url); err != nil { return nil, err } if resp.StatusCode >= 400 { - return nil, errors.New("Got HTTP status code >= 400: " + resp.Status) + return nil, fmt.Errorf("Got HTTP status code >= 400: %s", resp.Status) } return resp, nil }