projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
044e3d9
)
[pornhub] Relax removed message regex (Closes #9964)
author
Sergey M․
<dstftw@gmail.com>
Thu, 30 Jun 2016 20:14:23 +0000
(
03:14
+0700)
committer
Sergey M․
<dstftw@gmail.com>
Thu, 30 Jun 2016 20:14:23 +0000
(
03:14
+0700)
youtube_dl/extractor/pornhub.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/pornhub.py
b/youtube_dl/extractor/pornhub.py
index 4bbf1ec3b892a4f5fb887b56ec6c233e2e5c3ff9..c1694893c0e7fd159907693de57f39ab2ad8f63c 100644
(file)
--- 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(