Add missing formatting directive in Printf call
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 6 Aug 2015 20:46:01 +0000 (22:46 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 6 Aug 2015 20:46:35 +0000 (22:46 +0200)
To make Go Vet happy.

tpl/template_resources.go

index f49e7df6f7a531dd57ce844a210ea577ae6a811b..1fe94af88cf5d455fa1ef6b9532278a18f2085a2 100644 (file)
@@ -267,15 +267,15 @@ func GetCSV(sep string, urlParts ...string) [][]string {
 }
 
 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)