From 12e4222393fac3179c99a5d698dbd4fd14c2f422 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 5 May 2020 08:15:09 +0200 Subject: [PATCH] Fix one translation --- apps/member/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/member/models.py b/apps/member/models.py index 05daa22..fc1306a 100644 --- a/apps/member/models.py +++ b/apps/member/models.py @@ -299,7 +299,7 @@ class Synthesis(Document): def __str__(self): return _("Synthesis of team {trigram} that is {source} for the tournament {tournament}")\ - .format(trigram=self.team.trigram, source=self.source, tournament=self.tournament) + .format(trigram=self.team.trigram, source=self.get_source_display(), tournament=self.tournament) class Config(models.Model):