From 88641243abfdc5673359269574bf7c76191966bc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Thu, 18 Feb 2016 22:30:19 +0600 Subject: [PATCH] [pornhub:playlistbase] Improve extract entries --- youtube_dl/extractor/pornhub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py index 405dbf006..55af13324 100644 --- a/youtube_dl/extractor/pornhub.py +++ b/youtube_dl/extractor/pornhub.py @@ -132,7 +132,7 @@ class PornHubIE(InfoExtractor): class PornHubPlaylistBaseIE(InfoExtractor): def _extract_entries(self, webpage): return [ - self.url_result('http://www.pornhub.com/%s' % video_url, 'PornHub') + self.url_result('http://www.pornhub.com/%s' % video_url, PornHubIE.ie_key()) for video_url in set(re.findall( r'href="/?(view_video\.php\?.*\bviewkey=[\da-z]+[^"]*)"', webpage)) ] -- 2.30.2