From 1a44fd01069d9a8b540de0284656f02c770c4522 Mon Sep 17 00:00:00 2001 From: MaximZ21 Date: Wed, 8 Apr 2020 17:36:01 +0600 Subject: [PATCH] Minor change to satisfy flake8 --- youtube_dl/extractor/vlaretv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/vlaretv.py b/youtube_dl/extractor/vlaretv.py index 900260ece..264e19518 100644 --- a/youtube_dl/extractor/vlaretv.py +++ b/youtube_dl/extractor/vlaretv.py @@ -21,7 +21,7 @@ class VlaretvPlaylistIE(InfoExtractor): webpage = self._download_webpage(url, playlist_id) urls = re.findall(r'(.+?) \| Vlare', webpage, 'title') - + # When playlist points to deleted video there is an "error" in the url (Ex. https://vlare.tv/v/error/3257) entries = [self.url_result(urljoin('https://vlare.tv', u)) for u in urls if 'error' not in u]