summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-09-11 03:22:27 +0700
committerSergey M․ <dstftw@gmail.com>2017-09-11 03:23:00 +0700
commitf12a6e88b2c2632b10c156eb94d91675327485f6 (patch)
treef7db9238757b88e1da8b37012aab74639289b178
parent806498cf2f35cc98cf0e6c5b46f58ca357a842de (diff)
downloadyoutube-dl-f12a6e88b2c2632b10c156eb94d91675327485f6.tar.gz
youtube-dl-f12a6e88b2c2632b10c156eb94d91675327485f6.tar.xz
youtube-dl-f12a6e88b2c2632b10c156eb94d91675327485f6.zip
[rutube:playlist] Fix suitable (closes #14166)
-rw-r--r--youtube_dl/extractor/rutube.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube_dl/extractor/rutube.py b/youtube_dl/extractor/rutube.py
index 828c03b48..89d89b65a 100644
--- a/youtube_dl/extractor/rutube.py
+++ b/youtube_dl/extractor/rutube.py
@@ -265,8 +265,10 @@ class RutubePlaylistIE(RutubePlaylistBaseIE):
 
     _PAGE_TEMPLATE = 'http://rutube.ru/api/playlist/%s/%s/?page=%s&format=json'
 
-    @staticmethod
-    def suitable(url):
+    @classmethod
+    def suitable(cls, url):
+        if not super(RutubePlaylistIE, cls).suitable(url):
+            return False
         params = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
         return params.get('pl_type', [None])[0] and int_or_none(params.get('pl_id', [None])[0])