aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/http.go')
-rw-r--r--src/http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http.go b/src/http.go
index 362a2cd..db1316f 100644
--- a/src/http.go
+++ b/src/http.go
@@ -62,7 +62,7 @@ func chain(xs ...middleware) middleware {
func firstHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := context.WithValue(r.Context(), "td", &templateData{
- Debugp: Debugp,
+ Debugp: Debugp,
Printers: i18n.Printers,
})
next.ServeHTTP(w, r.WithContext(ctx))