projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e298d3a
)
[pornhub] Make error regex less ambiguous (Closes #10138)
author
Sergey M․
<dstftw@gmail.com>
Fri, 22 Jul 2016 14:24:09 +0000
(21:24 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Fri, 22 Jul 2016 14:24:09 +0000
(21:24 +0700)
youtube_dl/extractor/pornhub.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/pornhub.py
b/youtube_dl/extractor/pornhub.py
index d2c92531b0745ed189da699f4392725f2d4cddd6..20976c101d97f53a58b3599ded30f7bfb1d4bcd5 100644
(file)
--- a/
youtube_dl/extractor/pornhub.py
+++ b/
youtube_dl/extractor/pornhub.py
@@
-111,7
+111,7
@@
class PornHubIE(InfoExtractor):
webpage = self._download_webpage(req, video_id)
error_msg = self._html_search_regex(
- r'(?s)<div[^>]+class=(["\'])
.*?\b(?:removed|userMessageSection)\b.*?
\1[^>]*>(?P<error>.+?)</div>',
+ r'(?s)<div[^>]+class=(["\'])
(?:(?!\1).)*\b(?:removed|userMessageSection)\b(?:(?!\1).)*
\1[^>]*>(?P<error>.+?)</div>',
webpage, 'error message', default=None, group='error')
if error_msg:
error_msg = re.sub(r'\s+', ' ', error_msg)