about summary refs log tree commit diff
path: root/youtube_dl/extractor/pornhub.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-01 03:14:23 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-01 03:14:23 +0700
commit3cb3b60064fc8d99a8175b751000892b141e8de0 (patch)
tree2160834bed08d2badd79996c48848acbf0971a4a /youtube_dl/extractor/pornhub.py
parent044e3d91b5715f7aa63c578097b77fd510ed0f73 (diff)
downloadyoutube-dl-3cb3b60064fc8d99a8175b751000892b141e8de0.tar.gz
youtube-dl-3cb3b60064fc8d99a8175b751000892b141e8de0.tar.xz
youtube-dl-3cb3b60064fc8d99a8175b751000892b141e8de0.zip
[pornhub] Relax removed message regex (Closes #9964)
Diffstat (limited to 'youtube_dl/extractor/pornhub.py')
-rw-r--r--youtube_dl/extractor/pornhub.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py
index 4bbf1ec3b..c1694893c 100644
--- a/youtube_dl/extractor/pornhub.py
+++ b/youtube_dl/extractor/pornhub.py
@@ -87,8 +87,8 @@ class PornHubIE(InfoExtractor):
         webpage = self._download_webpage(req, video_id)
 
         error_msg = self._html_search_regex(
-            r'<div[^>]+class="removed">\s*<div[^>]*>\s*<p>\s*<span>([^<]*)</span>',
-            webpage, 'error message', default=None)
+            r'(?s)<div[^>]+class=(["\']).*?\bremoved\b.*?\1[^>]*>(?P<error>.+?)</div>',
+            webpage, 'error message', default=None, group='error')
         if error_msg:
             error_msg = re.sub(r'\s+', ' ', error_msg)
             raise ExtractorError(