diff options
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
| -rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index ef0f71bad..411de9ac9 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1008,7 +1008,7 @@ class YoutubeDL(object):                  t.get('preference'), t.get('width'), t.get('height'),                  t.get('id'), t.get('url')))              for i, t in enumerate(thumbnails): -                if 'width' in t and 'height' in t: +                if t.get('width') and t.get('height'):                      t['resolution'] = '%dx%d' % (t['width'], t['height'])                  if t.get('id') is None:                      t['id'] = '%d' % i  | 
