Update scoring panel for 2020.

This commit is contained in:
Patrick Fairbank
2020-03-21 23:32:28 -07:00
parent fd84cdcd73
commit 93cbce7aa1
6 changed files with 318 additions and 414 deletions

View File

@@ -189,6 +189,7 @@ func (web *Web) newHandler() http.Handler {
// Writes the given error out as plain text with a status code of 500.
func handleWebErr(w http.ResponseWriter, err error) {
log.Printf("HTTP request error: %v", err)
http.Error(w, "Internal server error: "+err.Error(), 500)
}