Updated GetCSV error message (#4636)

This commit is contained in:
Lucas Liberacki 2018-04-17 01:20:14 -04:00 committed by Bjørn Erik Pedersen
parent 89d2cf49ac
commit 5cc944ffd7

View file

@ -59,7 +59,7 @@ func (ns *Namespace) GetCSV(sep string, urlParts ...string) (d [][]string, err e
var req *http.Request
req, err = http.NewRequest("GET", url, nil)
if err != nil {
jww.ERROR.Printf("Failed to create request for getJSON: %s", err)
jww.ERROR.Printf("Failed to create request for getCSV: %s", err)
return nil, err
}