diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-01-11 15:25:29 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-01-11 15:25:29 +0600 |
commit | d156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96 (patch) | |
tree | 92ec3f44cbb33b13531ba8052a4071bee4e116bc /youtube_dl/extractor/xboxclips.py | |
parent | 987493aef37cce273a10ddfbe540a41a4c6a67cd (diff) |
[xboxclips] Fix extraction
Diffstat (limited to 'youtube_dl/extractor/xboxclips.py')
-rw-r--r-- | youtube_dl/extractor/xboxclips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/xboxclips.py b/youtube_dl/extractor/xboxclips.py index 9cf867807..236ff403b 100644 --- a/youtube_dl/extractor/xboxclips.py +++ b/youtube_dl/extractor/xboxclips.py @@ -30,7 +30,7 @@ class XboxClipsIE(InfoExtractor): webpage = self._download_webpage(url, video_id) video_url = self._html_search_regex( - r'>(?:Link|Download): <a href="([^"]+)">', webpage, 'video URL') + r'>(?:Link|Download): <a[^>]+href="([^"]+)"', webpage, 'video URL') title = self._html_search_regex( r'<title>XboxClips \| ([^<]+)</title>', webpage, 'title') upload_date = unified_strdate(self._html_search_regex( |