mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-02 15:06:23 -07:00
Remove extraneous prints
This commit is contained in:
parent
ad66026020
commit
36ce238dff
2 changed files with 1 additions and 2 deletions
|
@ -145,7 +145,6 @@ var funcMap = template.FuncMap{
|
|||
for k := 0; k < len(values); k += 2 {
|
||||
key, ok := values[k].(string)
|
||||
if !ok {
|
||||
fmt.Printf("%q\n\n", key)
|
||||
return nil, ErrInvalidKey
|
||||
}
|
||||
dict[key] = values[k+1]
|
||||
|
|
|
@ -91,7 +91,7 @@ func registerAdminPages() {
|
|||
if (do == "add" || do == "update") && password != passwordConfirm {
|
||||
return "", ErrPasswordConfirm
|
||||
}
|
||||
fmt.Println(do, updateUsername)
|
||||
|
||||
rankStr := request.FormValue("rank")
|
||||
var rank int
|
||||
if rankStr != "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue