aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/pornhub.py
diff options
context:
space:
mode:
authorkidol <keyboard.idol@gmail.com>2016-06-30 21:06:22 +0200
committerSergey M․ <dstftw@gmail.com>2016-07-01 02:59:50 +0700
commit044e3d91b5715f7aa63c578097b77fd510ed0f73 (patch)
treec3d71791affbdb608da52cc312afaba2d16544e9 /youtube_dl/extractor/pornhub.py
parentc9e538a3b1cde6ce140323a029c7b6f7386eb004 (diff)
downloadyoutube-dl-044e3d91b5715f7aa63c578097b77fd510ed0f73.tar.xz
[Pornhub] Fix error detection
Diffstat (limited to 'youtube_dl/extractor/pornhub.py')
-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 6d57e1d35..4bbf1ec3b 100644
--- a/youtube_dl/extractor/pornhub.py
+++ b/youtube_dl/extractor/pornhub.py
@@ -87,7 +87,7 @@ class PornHubIE(InfoExtractor):
webpage = self._download_webpage(req, video_id)
error_msg = self._html_search_regex(
- r'(?s)<div class="userMessageSection[^"]*".*?>(.*?)</div>',
+ r'<div[^>]+class="removed">\s*<div[^>]*>\s*<p>\s*<span>([^<]*)</span>',
webpage, 'error message', default=None)
if error_msg:
error_msg = re.sub(r'\s+', ' ', error_msg)