Fix message

This commit is contained in:
Виктор Гладких 2019-11-06 11:41:19 +03:00
parent 0ab60c1852
commit 390ff974d7
2 changed files with 2 additions and 2 deletions

View File

@ -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.'))

View File

@ -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.'))
self.stdout.write(self.style.WARNING(f'Created award types objects.'))