From: Sergey M․ Date: Sat, 5 Mar 2016 13:38:58 +0000 (+0600) Subject: [YoutubeDL] Fix resolution with missing height in output template dict X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;ds=sidebyside;h=51ce91174b9aefa5cb6b98bb0d7b03de09c30e00;p=youtube-dl [YoutubeDL] Fix resolution with missing height in output template dict --- diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index dcc867e45..f91851df9 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -567,7 +567,7 @@ class YoutubeDL(object): elif template_dict.get('height'): template_dict['resolution'] = '%sp' % template_dict['height'] elif template_dict.get('width'): - template_dict['resolution'] = '?x%d' % template_dict['width'] + template_dict['resolution'] = '%dx?' % template_dict['width'] sanitize = lambda k, v: sanitize_filename( compat_str(v),