summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-08-03 02:41:17 +0600
committerSergey M․ <dstftw@gmail.com>2015-08-03 02:41:17 +0600
commit524229a2975c20887a9a71cae77132e775003537 (patch)
treead257dadace4e9a94dd8d7648c5cb2cd47dc9117
parent754e70cf3e74218ae5d840985fbf07bbe274332a (diff)
downloadyoutube-dl-524229a2975c20887a9a71cae77132e775003537.tar.gz
youtube-dl-524229a2975c20887a9a71cae77132e775003537.tar.xz
youtube-dl-524229a2975c20887a9a71cae77132e775003537.zip
[pornhub] Improve
-rw-r--r--youtube_dl/extractor/pornhub.py2
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'))