Fixup incorrecr variable

This commit is contained in:
Eliot Whalan 2016-06-23 20:43:59 +10:00
parent 5c9c3ef187
commit b692b2fba8
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}
}