shithub: hugo

Download patch

ref: 1583d8d094f11b267ba7b9bd1ebbdfa460345beb
parent: 5b19a26556cc7a533b0e2559e5f1740b892a2f53
author: Bjørn Erik Pedersen <[email protected]>
date: Thu Aug 6 18:46:01 EDT 2015

Add missing formatting directive in Printf call

To make Go Vet happy.

--- a/tpl/template_resources.go
+++ b/tpl/template_resources.go
@@ -267,15 +267,15 @@
 }
 
 func ReadDir(path string) []os.FileInfo {
-    wd := ""
-    p := ""
+	wd := ""
+	p := ""
 	if viper.GetString("WorkingDir") != "" {
 		wd = viper.GetString("WorkingDir")
 	}
-    if strings.Contains(path, "..") {
-        jww.ERROR.Printf("Path contains parent directory marker ..\n", path)
+	if strings.Contains(path, "..") {
+		jww.ERROR.Printf("Path %s contains parent directory marker", path)
 		return nil
-    }
+	}
 
 	p = filepath.Clean(path)
 	p = filepath.Join(wd, p)