From 85bea31b6621f7e9e7c365fc0c737a0e6a8b87f3 Mon Sep 17 00:00:00 2001 From: Raz Date: Fri, 18 Oct 2024 16:01:15 +0200 Subject: [PATCH] fix call date --- tournaments/models/tournament.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index d2f5e0d..8e74b8e 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -285,7 +285,7 @@ class Tournament(models.Model): names = team_registration.team_names() weight = team_registration.weight initial_weight = team_registration.initial_weight() - date = team_registration.registration_date + date = team_registration.call_date team = TeamList(names, weight, date, initial_weight, team_registration.wild_card_bracket, team_registration.wild_card_group_stage, team_registration.logo) print(f"Created team: {team}") if team_registration.group_stage_position is not None: