fmt migration file

Signed-off-by: Alexey Terentyev <axifnx@gmail.com>
This commit is contained in:
Alexey Terentyev 2018-06-19 16:49:39 +03:00
parent c1da9ae887
commit e326026c8c
No known key found for this signature in database
GPG Key ID: 60D6C550AEEBB467

View File

@ -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 {