diff --git a/tournaments/models/team_registration.py b/tournaments/models/team_registration.py index 3252031..272163d 100644 --- a/tournaments/models/team_registration.py +++ b/tournaments/models/team_registration.py @@ -100,5 +100,5 @@ class TeamRegistration(models.Model): if self.call_date: return self.call_date.astimezone(timezone) else: - print("no date") + # print("no date") return None diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 36627ff..b8d9e2e 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -837,11 +837,11 @@ class Tournament(models.Model): start = timezoned_datetime.replace(hour=0, minute=0) - print(f"timezoned_datetime: {timezoned_datetime}") - print(f"tournament end date: {end}") - print(f"current time: {now}") - print(f"tournament start: {start}") - print(f"start <= now <= end: {start <= now <= end}") + # print(f"timezoned_datetime: {timezoned_datetime}") + # print(f"tournament end date: {end}") + # print(f"current time: {now}") + # print(f"tournament start: {start}") + # print(f"start <= now <= end: {start <= now <= end}") return start <= now <= end