Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tpl/data
diff options
context:
space:
mode:
authorLucas Liberacki <coolcodingguy@gmail.com>2018-04-17 08:20:14 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-04-17 08:20:14 +0300
commit5cc944ffd77289ab0b8efd69d628fb11d1280993 (patch)
tree58ab9394fd10cd456ef1eb98fb4bf208b4a66496 /tpl/data
parent89d2cf49ac0cddfddfc579c143d6b59998553315 (diff)
Updated GetCSV error message (#4636)
Diffstat (limited to 'tpl/data')
-rw-r--r--tpl/data/data.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/data/data.go b/tpl/data/data.go
index 0c75fdbb7..0dd2b2625 100644
--- 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
}