From e08bd8508a85184a7c91dc02b970e70b7bc03190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D0=BA=D1=82=D0=BE=D1=80=20=D0=93=D0=BB=D0=B0?= =?UTF-8?q?=D0=B4=D0=BA=D0=B8=D1=85?= Date: Thu, 14 Nov 2019 16:35:12 +0300 Subject: [PATCH] Fix print --- apps/main/management/commands/add_award.py | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/main/management/commands/add_award.py b/apps/main/management/commands/add_award.py index 319dc54e..9a02713f 100644 --- a/apps/main/management/commands/add_award.py +++ b/apps/main/management/commands/add_award.py @@ -32,7 +32,6 @@ class Command(BaseCommand): state = Award.PUBLISHED if a.state == 'published' else Award.WAITING if profiles.exists() and type.exists(): for profile in profiles: - print(f'PROFILE {profile}') award = Award(award_type=type.first(), vintage_year=a.vintage_year, title={"en-GB": a.title}, state=state, content_object=profile, old_id=a.id)