From 629b425115e706c9727a25ab13c82c1ded7c81f1 Mon Sep 17 00:00:00 2001 From: Baptiste Roux Date: Sat, 19 Feb 2022 13:10:00 +0100 Subject: [PATCH] Return season slug from seasons function --- trakt/tv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trakt/tv.py b/trakt/tv.py index 9c60d9f..b6531f0 100644 --- a/trakt/tv.py +++ b/trakt/tv.py @@ -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