From: kidol Date: Thu, 30 Jun 2016 19:06:22 +0000 (+0200) Subject: [Pornhub] Fix error detection X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=044e3d91b5715f7aa63c578097b77fd510ed0f73 [Pornhub] Fix error detection --- 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)
(.*?)
', + r']+class="removed">\s*]*>\s*

\s*([^<]*)', webpage, 'error message', default=None) if error_msg: error_msg = re.sub(r'\s+', ' ', error_msg)