mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-12-22 16:57:40 +00:00
Added code corrections to satisfy flake8 reqs :)
This commit is contained in:
parent
f4aa8c13b5
commit
eaea25ca0e
1 changed files with 4 additions and 5 deletions
|
@ -2433,8 +2433,7 @@ class YoutubeDL(object):
|
||||||
if thumbnailformat in [i.get('id') for i in thumbnails]:
|
if thumbnailformat in [i.get('id') for i in thumbnails]:
|
||||||
thumbnails = [i for i in thumbnails if i.get('id') == thumbnailformat]
|
thumbnails = [i for i in thumbnails if i.get('id') == thumbnailformat]
|
||||||
else:
|
else:
|
||||||
self.report_warning(
|
self.report_warning('Thumbnail ID unavailable, falling back to default.'
|
||||||
'Thumbnail ID unavailable, falling back to default.'
|
|
||||||
' Check available thumbnail formats with the option --list-thumbnails'
|
' Check available thumbnail formats with the option --list-thumbnails'
|
||||||
)
|
)
|
||||||
thumbnails = [thumbnails[-1]]
|
thumbnails = [thumbnails[-1]]
|
||||||
|
|
Loading…
Reference in a new issue