We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2d4721 commit 4bab1f8Copy full SHA for 4bab1f8
1 file changed
core/common/tasks.py
@@ -368,7 +368,7 @@ def delete_duplicate_locales(start_from=None): # pragma: no cover
368
total = queryset.count()
369
batch_size = 1000
370
371
- logger.info('%d concepts with duplicate locales. Getting them in batches of %d...' % (total, batch_size)) # pylint: disable=logging-not-lazy
+ logger.info('%d concepts with more than one locales. Getting them in batches of %d...' % (total, batch_size)) # pylint: disable=logging-not-lazy
372
373
for start in range(start_from, total, batch_size):
374
end = min(start + batch_size, total)
0 commit comments