hugolib: Use double quotes instead of back quotes
authorAnthony Fok <foka@debian.org>
Thu, 26 Apr 2018 20:17:42 +0000 (14:17 -0600)
committerAnthony Fok <foka@debian.org>
Mon, 14 May 2018 06:03:03 +0000 (00:03 -0600)
so that '\n' is interpreted in the timeout warning.

hugolib/page.go

index e79b063cca18888ea6d1f115e526990035ce92a5..7c2ac70b291d289748a8c75ce6336f3a9545fdcb 100644 (file)
@@ -305,7 +305,7 @@ func (p *Page) initContent() {
 
                select {
                case <-ctx.Done():
-                       p.s.Log.WARN.Printf(`WARNING: Timed out creating content for page %q (.Content will be empty). This is most likely a circular shortcode content loop that should be fixed. If this is just a shortcode calling a slow remote service, try to set "timeout=20000" (or higher, value is in milliseconds) in config.toml.\n`, p.pathOrTitle())
+                       p.s.Log.WARN.Printf("WARNING: Timed out creating content for page %q (.Content will be empty). This is most likely a circular shortcode content loop that should be fixed. If this is just a shortcode calling a slow remote service, try to set \"timeout=20000\" (or higher, value is in milliseconds) in config.toml.\n", p.pathOrTitle())
                case err := <-c:
                        if err != nil {
                                p.s.Log.ERROR.Println(err)