hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 5cc944ffd77289ab0b8efd69d628fb11d1280993
parent 89d2cf49ac0cddfddfc579c143d6b59998553315
Author: Lucas Liberacki <coolcodingguy@gmail.com>
Date:   Tue, 17 Apr 2018 01:20:14 -0400

Updated GetCSV error message (#4636)


Diffstat:
Mtpl/data/data.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
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
 		}