mirror of
https://github.com/jech/galene.git
synced 2024-11-08 17:55:59 +01:00
Fix incorrect formatting of error message.
This commit is contained in:
parent
10c57c7596
commit
be0f05dac8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue