diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 9f7ee81..10610dc 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -76,8 +76,7 @@ class Tournament(models.Model): for match in round.match_set.all(): matches.append(match) - if broadcasted: - matches = [m for m in matches if m.broadcasted==True] + matches = [m for m in matches if m.broadcasted==True] if not broadcasted: matches = [m for m in matches if len(m.team_scores.all()) > 0]