summaryrefslogtreecommitdiff
path: root/templates.go
diff options
context:
space:
mode:
Diffstat (limited to 'templates.go')
-rw-r--r--templates.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/templates.go b/templates.go
index c90cb09..f5f25af 100644
--- a/templates.go
+++ b/templates.go
@@ -2,7 +2,6 @@ package syw
import (
"embed"
- "fmt"
"net/url"
"strings"
"text/template"
@@ -39,7 +38,6 @@ func gopherCombine(base string, relative ...string) (string, error) {
if err != nil {
return "", err
}
- fmt.Println("combining", base, relative)
for _, rel := range relative {
ru, err := url.Parse(rel)