From f9588ec2cd14090d762e0e6d96e6bda896ef4b8f Mon Sep 17 00:00:00 2001 From: dirkf Date: Wed, 7 Oct 2020 02:56:27 +0100 Subject: [PATCH] Fix for flake8 Trailing spaces in comments FFS! --- youtube_dl/extractor/bbc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index ca0634e6c..a67ced3f6 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -352,7 +352,7 @@ class BBCCoUkIE(InfoExtractor): last_exception = None formats = [] subtitles = [] - # as some mediaselectors may be parseable but have + # as some mediaselectors may be parseable but have # no formats (eg captions only), try all possible # mediaselectors for mediaselector_url in self._MEDIASELECTOR_URLS: @@ -366,7 +366,7 @@ class BBCCoUkIE(InfoExtractor): last_exception = e continue self._raise_extractor_error(e) - # ignore a trapped exception if formats were found + # ignore a trapped exception if formats were found if last_exception and not formats: self._raise_extractor_error(last_exception) return formats, subtitles