Make the speculator serve up errors as plain text

... so that they are legible.
pull/977/head
Richard van der Hoff 9 years ago
parent e630f6c0c0
commit 2aa4773cc1

@ -135,6 +135,7 @@ func generate(dir string) error {
}
func writeError(w http.ResponseWriter, code int, err error) {
w.Header().Set("Content-Type", "text/plain")
w.WriteHeader(code)
io.WriteString(w, fmt.Sprintf("%v\n", err))
}

Loading…
Cancel
Save