From: Philipp Hagemeister Date: Sun, 22 Sep 2013 10:18:10 +0000 (+0200) Subject: Do not warn if fallback is without alternatives (because we did not get the flash... X-Git-Tag: 2021.01.07~13136^2~5 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/d2d8f895310be7fa302ba7755c60d5948866fcaa Do not warn if fallback is without alternatives (because we did not get the flash player URL) --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 888907c93..780690ed0 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1063,8 +1063,8 @@ def _decrypt_signature(self, s, video_id, player_url, age_gate=False): self._downloader.report_warning( u'Automatic signature extraction failed: ' + tb) - self._downloader.report_warning( - u'Warning: Falling back to static signature algorithm') + self._downloader.report_warning( + u'Warning: Falling back to static signature algorithm') return self._static_decrypt_signature( s, video_id, player_url, age_gate)