summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-03-10 10:29:25 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-03-10 10:29:25 +0100
commit805ef3c60bc4acd9769d937b517d1cd4b7336cd5 (patch)
treef12b266bbb2e178dd9f01c656c1524da4a1ff6a8
parentfbc2dcb40b5be817172011e26bde7d38b3942e52 (diff)
downloadyoutube-dl-805ef3c60bc4acd9769d937b517d1cd4b7336cd5.tar.gz
youtube-dl-805ef3c60bc4acd9769d937b517d1cd4b7336cd5.tar.xz
youtube-dl-805ef3c60bc4acd9769d937b517d1cd4b7336cd5.zip
Correct automatic resolution determination
-rw-r--r--youtube_dl/YoutubeDL.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index fcb8dd19c..523eba3c1 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -416,9 +416,9 @@ class YoutubeDL(object):
                 if template_dict.get('width') and template_dict.get('height'):
                     template_dict['resolution'] = '%dx%d' % (template_dict['width'], template_dict['height'])
                 elif template_dict.get('height'):
-                    res = '%sp' % template_dict['height']
+                    template_dict['resolution'] = '%sp' % template_dict['height']
                 elif template_dict.get('width'):
-                    res = '?x%d' % template_dict['width']
+                    template_dict['resolution'] = '?x%d' % template_dict['width']
 
             sanitize = lambda k, v: sanitize_filename(
                 compat_str(v),