summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-01-11 15:25:29 +0600
committerSergey M․ <dstftw@gmail.com>2015-01-11 15:25:29 +0600
commitd156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96 (patch)
tree92ec3f44cbb33b13531ba8052a4071bee4e116bc
parent987493aef37cce273a10ddfbe540a41a4c6a67cd (diff)
downloadyoutube-dl-d156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96.tar.gz
youtube-dl-d156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96.tar.xz
youtube-dl-d156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96.zip
[xboxclips] Fix extraction
-rw-r--r--youtube_dl/extractor/xboxclips.py2
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(