diff --git a/trakt/users.py b/trakt/users.py index 523b83d3..ed825ad5 100644 --- a/trakt/users.py +++ b/trakt/users.py @@ -372,7 +372,8 @@ def show_collection(self): s = show.pop('show') extract_ids(s) sh = TVShow(**s) - sh._seasons = [TVSeason(show=sh.title, **sea) + sh._seasons = [TVSeason(show=sh.title, + season=sea['number'], **sea) for sea in show.pop('seasons')] self._show_collection.append(sh) yield self._show_collection