From 5ab3d68e738fc4ea4e1a32cc65a385ddf0667981 Mon Sep 17 00:00:00 2001 From: etmatrix Date: Sun, 10 Nov 2019 16:32:41 +0100 Subject: [PATCH] [xboxclips] Fix a little change on title --- youtube_dl/extractor/xboxclips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/xboxclips.py b/youtube_dl/extractor/xboxclips.py index d9c277bc3..177a2f9b6 100644 --- a/youtube_dl/extractor/xboxclips.py +++ b/youtube_dl/extractor/xboxclips.py @@ -32,7 +32,7 @@ class XboxClipsIE(InfoExtractor): video_url = self._html_search_regex( r'>(?:Link|Download): ]+href="([^"]+)"', webpage, 'video URL') title = self._html_search_regex( - r'XboxClips \| ([^<]+)', webpage, 'title') + r'XboxClips \- ([^<]+)', webpage, 'title') upload_date = unified_strdate(self._html_search_regex( r'>Recorded: ([^<]+)<', webpage, 'upload date', fatal=False)) filesize = parse_filesize(self._html_search_regex(