Skip to content

Commit

Permalink
Return season slug from seasons function
Browse files Browse the repository at this point in the history
  • Loading branch information
BapRx committed Feb 19, 2022
1 parent 8a6d4f1 commit 629b425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trakt/tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def seasons(self):
for season in data:
extract_ids(season)
self._seasons.append(TVSeason(self.title,
season['number'], **season))
season['number'], self.slug, **season))
yield self._seasons

@property
Expand Down

0 comments on commit 629b425

Please sign in to comment.