mirror of
https://github.com/jech/galene.git
synced 2024-11-22 16:45:58 +01:00
Println doesn't support formats.
This commit is contained in:
parent
aa3e094f65
commit
c6d065aa20
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ func groupHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
if os.IsNotExist(err) {
|
if os.IsNotExist(err) {
|
||||||
notFound(w)
|
notFound(w)
|
||||||
} else {
|
} else {
|
||||||
log.Println("addGroup: %v", err)
|
log.Printf("addGroup: %v", err)
|
||||||
http.Error(w, "Internal server error",
|
http.Error(w, "Internal server error",
|
||||||
http.StatusInternalServerError)
|
http.StatusInternalServerError)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue