From eb26087326d5a4ec948e2de0ba3bf79f9ec6e78c Mon Sep 17 00:00:00 2001 From: Luc Ritchie Date: Tue, 2 Jan 2018 13:22:39 -0500 Subject: [PATCH] [twitch] Drop log line if id can't be extracted from URL --- youtube_dl/extractor/twitch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 90a2245f6..f9164af09 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -366,8 +366,7 @@ class TwitchPlaylistBaseIE(TwitchBaseIE): video_id = 'v%s' % TwitchVodIE._match_id(url) return self.url_result(url, TwitchVodIE.ie_key(), video_id=video_id) except AssertionError: - self.to_screen('Unable to match video ID from URL: %s' % url) - return self.url_result(url) + return self.url_result(url) def _extract_playlist_page(self, response): videos = response.get('videos')