diff options
-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( |