From ed7031ef24690d55e29fe01f71602719280a3f48 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Thu, 7 Aug 2025 14:45:25 +0200 Subject: [PATCH] Update tournament.py --- tournaments/models/tournament.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 5485003..a31e742 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -360,13 +360,13 @@ class Tournament(BaseModel): # Team is not in list if index < 0: - print("Team is not in list", index, self.team_count) + print("get_team_waiting_list_position: Team is not in list", index, self.team_count) return -1 # Return position in waiting list relative to target count - print("Return position in waiting list relative to target count", index, self.team_count) + print("get_team_waiting_list_position: Return position in waiting list relative to target count", index, self.team_count) return index - self.team_count else: - print("else", index, self.team_count) + print("get_team_waiting_list_position: Return -1", self.team_count) return -1 def group_stage_spots(self):