Commit be0f05da authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix incorrect formatting of error message.

parent 10c57c75
......@@ -401,7 +401,7 @@ func groupStatusHandler(w http.ResponseWriter, r *http.Request) {
func publicHandler(w http.ResponseWriter, r *http.Request) {
base, err := groupBase(r)
if err != nil {
log.Println("couldn't determine group base: %v", err)
log.Printf("couldn't determine group base: %v", err)
http.Error(w, "Internal server error",
http.StatusInternalServerError)
return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment