remove unnessecary fmt
the build was successful Details

This commit is contained in:
kolaente 2019-01-08 20:09:11 +01:00
parent 1548bbccc3
commit 954d6b1170
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 2 deletions

View File

@ -18,7 +18,6 @@ package models
import (
"code.vikunja.io/web"
"fmt"
)
// ListTaskAssginee represents an assignment of a user to a task
@ -172,7 +171,6 @@ func (la *ListTaskAssginee) Create(a web.Auth) (err error) {
func (t *ListTask) addNewAssigneeByID(newAssigneeID int64, list *List) (err error) {
// Check if the user exists and has access to the list
fmt.Println("getuserbyid")
newAssignee, err := GetUserByID(newAssigneeID)
if err != nil {
return err