From 285ffcda3715545c94c4a872dade05c3bbbb665a Mon Sep 17 00:00:00 2001 From: Laurent Date: Sat, 9 Nov 2024 12:53:38 +0100 Subject: [PATCH] Fix crash --- 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 b8d9e2e..27e3b03 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -913,7 +913,7 @@ class TeamSummon: class TeamItem: def __init__(self, team_registration): - self.names = team_registration.team_names + self.names = team_registration.team_names() self.date = team_registration.local_call_date() self.weight = team_registration.weight self.initial_weight = team_registration.initial_weight()