fix solution str representation
This commit is contained in:
parent
ba6a6338f5
commit
d8f2e56d45
|
@ -561,7 +561,7 @@ class Solution(models.Model):
|
|||
def __str__(self):
|
||||
return _("Solution of team {team} for problem {problem}")\
|
||||
.format(team=self.participation.team.name, problem=self.problem)\
|
||||
+ (" " + _("for final") if self.final_solution else "")
|
||||
+ (" " + str(_("for final")) if self.final_solution else "")
|
||||
|
||||
class Meta:
|
||||
verbose_name = _("solution")
|
||||
|
|
Loading…
Reference in New Issue