diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-08-03 02:41:17 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-08-03 02:41:17 +0600 |
commit | 524229a2975c20887a9a71cae77132e775003537 (patch) | |
tree | ad257dadace4e9a94dd8d7648c5cb2cd47dc9117 /youtube_dl | |
parent | 754e70cf3e74218ae5d840985fbf07bbe274332a (diff) |
[pornhub] Improve
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/pornhub.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py index fbaa830d6..fec493046 100644 --- a/youtube_dl/extractor/pornhub.py +++ b/youtube_dl/extractor/pornhub.py @@ -81,7 +81,7 @@ class PornHubIE(InfoExtractor): comment_count = self._extract_count( r'All Comments\s*<span>\(([\d,.]+)\)', webpage, 'comment') - video_urls = list(map(compat_urllib_parse_unquote, re.findall(r"var player_quality_[0-9]{3}p = '([^']+)'", webpage))) + video_urls = list(map(compat_urllib_parse_unquote, re.findall(r"player_quality_[0-9]{3}p\s*=\s*'([^']+)'", webpage))) if webpage.find('"encrypted":true') != -1: password = compat_urllib_parse_unquote_plus( self._search_regex(r'"video_title":"([^"]+)', webpage, 'password')) |