From 9000f2c3cd2cde9ad591da9ba22e99308be6a26a Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 7 Sep 2021 19:09:44 +0200 Subject: [PATCH] Fix lint --- pkg/models/export.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/models/export.go b/pkg/models/export.go index eec59db5aee..101689d829c 100644 --- a/pkg/models/export.go +++ b/pkg/models/export.go @@ -186,7 +186,7 @@ func exportListsAndTasks(s *xorm.Session, u *user.User, wr *zip.Writer) (err err Task: *t, } if _, exists := listMap[t.ListID]; !exists { - log.Debugf("[User Data Export] List %d does not exist for task %d, ommitting", t.ListID, t.ID) + log.Debugf("[User Data Export] List %d does not exist for task %d, omitting", t.ListID, t.ID) continue } listMap[t.ListID].Tasks = append(listMap[t.ListID].Tasks, taskMap[t.ID]) @@ -203,7 +203,7 @@ func exportListsAndTasks(s *xorm.Session, u *user.User, wr *zip.Writer) (err err for _, c := range comments { if _, exists := taskMap[c.TaskID]; !exists { - log.Debugf("[User Data Export] Task %d does not exist for comment %d, ommitting", c.TaskID, c.ID) + log.Debugf("[User Data Export] Task %d does not exist for comment %d, omitting", c.TaskID, c.ID) continue } taskMap[c.TaskID].Comments = append(taskMap[c.TaskID].Comments, c) @@ -217,7 +217,7 @@ func exportListsAndTasks(s *xorm.Session, u *user.User, wr *zip.Writer) (err err for _, b := range buckets { if _, exists := listMap[b.ListID]; !exists { - log.Debugf("[User Data Export] List %d does not exist for bucket %d, ommitting", b.ListID, b.ID) + log.Debugf("[User Data Export] List %d does not exist for bucket %d, omitting", b.ListID, b.ID) continue } listMap[b.ListID].Buckets = append(listMap[b.ListID].Buckets, b)