diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-02-22 23:11:33 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-02-22 23:11:33 +0600 | 
| commit | c010af6f195c2e84aec7d0ddec060fcbe9c45089 (patch) | |
| tree | e886be88b7f78b35e6bc68f5555ac22b032743b5 | |
| parent | 35b798230334e984977090ae03a307eaf7eedbc1 (diff) | |
[escapist] Make regexes more robust (Closes #5028)
| -rw-r--r-- | youtube_dl/extractor/escapist.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/escapist.py b/youtube_dl/extractor/escapist.py index 6b693b3b6..b49b9869f 100644 --- a/youtube_dl/extractor/escapist.py +++ b/youtube_dl/extractor/escapist.py @@ -31,10 +31,10 @@ class EscapistIE(InfoExtractor):          webpage = self._download_webpage(url, video_id)          uploader_id = self._html_search_regex( -            r"<h1 class='headline'><a href='/videos/view/(.*?)'", +            r"<h1\s+class='headline'>\s*<a\s+href='/videos/view/(.*?)'",              webpage, 'uploader ID', fatal=False)          uploader = self._html_search_regex( -            r"<h1 class='headline'>(.*?)</a>", +            r"<h1\s+class='headline'>(.*?)</a>",              webpage, 'uploader', fatal=False)          description = self._html_search_meta('description', webpage) @@ -42,7 +42,7 @@ class EscapistIE(InfoExtractor):          title = raw_title.partition(' : ')[2]          config_url = compat_urllib_parse.unquote(self._html_search_regex( -            r'<param name="flashvars" value="config=([^"&]+)', webpage, 'config URL')) +            r'<param\s+name="flashvars"\s+value="config=([^"&]+)', webpage, 'config URL'))          formats = [] | 
