From c87331ae8427b578655a88e8fb6286aa4774d060 Mon Sep 17 00:00:00 2001 From: Chase Adams Date: Tue, 29 Nov 2016 15:03:47 -0800 Subject: [PATCH] hugolib: Fix rendered empty msg Changes `%q` to `%s`. `%q` was safely escaping the `\` in windows so that it was printing `\\`. --- hugolib/site.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugolib/site.go b/hugolib/site.go index 87ab050b0..bddaa97f6 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -1768,7 +1768,7 @@ func (s *Site) renderAndWritePage(name string, dest string, d interface{}, layou if outBuffer.Len() == 0 { - jww.WARN.Printf("%q is rendered empty\n", dest) + jww.WARN.Printf("%s is rendered empty\n", dest) if dest == "/" { debugAddend := "" if !viper.GetBool("verbose") {