diff --git a/plexapi/video.py b/plexapi/video.py index 4c7b5eb6..e0250f2a 100644 --- a/plexapi/video.py +++ b/plexapi/video.py @@ -333,7 +333,7 @@ class Show(Video): title (str or int): Title or Number of the season to return. """ if isinstance(title, int): - title = 'Season %s' % title + title = 'Season %s' % title if title != 0 else 'Specials' key = '/library/metadata/%s/children' % self.ratingKey return self.fetchItem(key, etag='Directory', title__iexact=title)