diff --git a/espnff/team.py b/espnff/team.py index 9c37691..48d86d6 100644 --- a/espnff/team.py +++ b/espnff/team.py @@ -8,6 +8,7 @@ def __init__(self, data): self.division_name = data['division']['divisionName'] self.wins = data['record']['overallWins'] self.losses = data['record']['overallLosses'] + self.ties = data['record']['overallTies'] self.points_for = data['record']['pointsFor'] self.points_against = data['record']['pointsAgainst'] self.owner = "%s %s" % (data['owners'][0]['firstName'],