From e326026c8c5b46822b15e6206e738494036f036f Mon Sep 17 00:00:00 2001 From: Alexey Terentyev Date: Tue, 19 Jun 2018 16:49:39 +0300 Subject: [PATCH] fmt migration file Signed-off-by: Alexey Terentyev --- models/migrations/v67.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/migrations/v67.go b/models/migrations/v67.go index 77bfa6ae9..4fb758a85 100644 --- a/models/migrations/v67.go +++ b/models/migrations/v67.go @@ -68,7 +68,7 @@ func reformatAndRemoveIncorrectTopics(x *xorm.Engine) (err error) { } log.Info("Deleting incorrect topics...") - for start := 0; ; start+=batchSize { + for start := 0; ; start += batchSize { if (start + batchSize) < len(delTopicIDs) { ids = delTopicIDs[start:(start + batchSize)] } else {