aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-05 19:38:58 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-05 19:38:58 +0600
commit51ce91174b9aefa5cb6b98bb0d7b03de09c30e00 (patch)
tree58df792a49bd7653b42ab522230cd932af5d690e /youtube_dl/YoutubeDL.py
parent107d0c421a35083fd2412de5dce558fc16f337e7 (diff)
downloadyoutube-dl-51ce91174b9aefa5cb6b98bb0d7b03de09c30e00.tar.xz
[YoutubeDL] Fix resolution with missing height in output template dict
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
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),