فهرست منبع

[viewster] Use tuple

Sergey M․ 10 سال پیش
والد
کامیت
d0fed4ac02
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      youtube_dl/extractor/viewster.py

+ 1 - 1
youtube_dl/extractor/viewster.py

@@ -95,7 +95,7 @@ class ViewsterIE(InfoExtractor):
         entry_id = info.get('Id') or info['id']
         entry_id = info.get('Id') or info['id']
 
 
         # unfinished serie has no Type
         # unfinished serie has no Type
-        if info.get('Type') in ['Serie', None]:
+        if info.get('Type') in ('Serie', None):
             try:
             try:
                 episodes = self._download_json(
                 episodes = self._download_json(
                     'https://public-api.viewster.com/series/%s/episodes' % entry_id,
                     'https://public-api.viewster.com/series/%s/episodes' % entry_id,