diff --git a/apps/main/management/commands/add_award.py b/apps/main/management/commands/add_award.py index 92b4a4b5..a173510a 100644 --- a/apps/main/management/commands/add_award.py +++ b/apps/main/management/commands/add_award.py @@ -36,6 +36,6 @@ class Command(BaseCommand): content_object=profile, old_id=a.id) objects.append(award) awards = Award.objects.bulk_create(objects) - self.stdout.write(self.style.WARNING(f'Created establishment employee objects.')) + self.stdout.write(self.style.WARNING(f'Created awards objects.')) diff --git a/apps/main/management/commands/add_award_type.py b/apps/main/management/commands/add_award_type.py index 9e24c78b..e43b934e 100644 --- a/apps/main/management/commands/add_award_type.py +++ b/apps/main/management/commands/add_award_type.py @@ -31,4 +31,4 @@ class Command(BaseCommand): type.country = country objects.append(type) types = AwardType.objects.bulk_create(objects) - self.stdout.write(self.style.WARNING(f'Created establishment employee objects.')) \ No newline at end of file + self.stdout.write(self.style.WARNING(f'Created award types objects.')) \ No newline at end of file