Skip to content

Commit 4bab1f8

Browse files
committed
delete duplicate locales task | Updated log statement
1 parent c2d4721 commit 4bab1f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/common/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def delete_duplicate_locales(start_from=None): # pragma: no cover
368368
total = queryset.count()
369369
batch_size = 1000
370370

371-
logger.info('%d concepts with duplicate locales. Getting them in batches of %d...' % (total, batch_size)) # pylint: disable=logging-not-lazy
371+
logger.info('%d concepts with more than one locales. Getting them in batches of %d...' % (total, batch_size)) # pylint: disable=logging-not-lazy
372372

373373
for start in range(start_from, total, batch_size):
374374
end = min(start + batch_size, total)

0 commit comments

Comments
 (0)