From b2fd75b4208de195781dba23b2c5772e5ec62d4d Mon Sep 17 00:00:00 2001 From: Laurent Date: Sat, 16 Mar 2024 10:49:34 +0100 Subject: [PATCH] Remove log --- tournaments/models/tournament.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index b5f4451..9f7ee81 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -58,7 +58,6 @@ class Tournament(models.Model): for team_registration in self.teamregistration_set.all(): next_match = team_registration.next_match() if next_match: - print(f"MATCH ID = {next_match.id} - {next_match.round.id} - {next_match.round.index}") names = team_registration.team_names() stage = next_match.stage_name() weight = team_registration.weight()