From b692b2fba8efe8a4330288bdace5917a5bc84dc9 Mon Sep 17 00:00:00 2001 From: Eliot Whalan Date: Thu, 23 Jun 2016 20:43:59 +1000 Subject: [PATCH] Fixup incorrecr variable --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index be9f394..d511c7b 100644 --- a/main.go +++ b/main.go @@ -246,7 +246,7 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) { } else { dat, err := ioutil.ReadFile("assets/syntax.html") check(err) - fmt.Fprintf(w, string(dat), paste, paste, highlight, link) + fmt.Fprintf(w, string(dat), paste, paste, s, link) } }