Updated GetCSV error message (#4636) - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 5cc944ffd77289ab0b8efd69d628fb11d1280993
(DIR) parent 89d2cf49ac0cddfddfc579c143d6b59998553315
(HTM) Author: Lucas Liberacki <coolcodingguy@gmail.com>
Date: Tue, 17 Apr 2018 01:20:14 -0400
Updated GetCSV error message (#4636)
Diffstat:
M tpl/data/data.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/tpl/data/data.go b/tpl/data/data.go
@@ -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
}