diff --git a/core/management/commands/harvest_online_ebooks.py b/core/management/commands/harvest_online_ebooks.py index 4d5bf95e..4e80c2a0 100644 --- a/core/management/commands/harvest_online_ebooks.py +++ b/core/management/commands/harvest_online_ebooks.py @@ -29,6 +29,7 @@ class Command(BaseCommand): onlines = (Ebook.objects.get(id=id) for id in online_ids) done = 0 providers = {} + self.stdout.write('%s onlines to check' % onlines.count()) for online in onlines: if trace: self.stdout.write(str(online.id))