hugolib: Fix rendered empty msg

Changes `%q` to `%s`. `%q` was safely escaping the `\` in windows so that it was printing `\\`.
This commit is contained in:
Chase Adams 2016-11-29 15:03:47 -08:00 committed by Bjørn Erik Pedersen
parent b2eadd93d3
commit c87331ae84
1 changed files with 1 additions and 1 deletions

View File

@ -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") {