[pornhub:playlistbase] Improve extract entries

This commit is contained in:
Sergey M․ 2016-02-18 22:30:19 +06:00
parent 40e146aa1e
commit 88641243ab
1 changed files with 1 additions and 1 deletions

View File

@ -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))
]