diff --git a/opentech/apply/funds/management/commands/migration_base.py b/opentech/apply/funds/management/commands/migration_base.py index 08c9e13f8347fa3c908b0d6ba819e5ef6e658235..93bcb6e76f0822f5f592a78e1d5b9408138ceb3e 100644 --- a/opentech/apply/funds/management/commands/migration_base.py +++ b/opentech/apply/funds/management/commands/migration_base.py @@ -40,8 +40,12 @@ class MigrateCommand(BaseCommand): with options['source'] as json_data: self.data = json.load(json_data) + counter = 0 for id in self.data: self.process(id) + counter += 1 + + self.stdout.write(f"Imported {counter} submissions.") def process(self, id): node = self.data[id]