aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-07-09 00:26:13 +0700
committerSergey M․ <dstftw@gmail.com>2017-07-09 00:26:13 +0700
commit8b347a389eaa6d545ada901c2e236a5eb2272960 (patch)
treea5bcc6b5de73abb07196ca3acf280686ed57f1ea
parenta49804816c0246d81b9d34d9f89f99fae06da887 (diff)
downloadyoutube-dl-8b347a389eaa6d545ada901c2e236a5eb2272960.tar.xz
[googledrive] Fix height extraction (closes #13603)
-rw-r--r--youtube_dl/extractor/googledrive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/googledrive.py b/youtube_dl/extractor/googledrive.py
index 9705cfadd..c40da85c5 100644
--- a/youtube_dl/extractor/googledrive.py
+++ b/youtube_dl/extractor/googledrive.py
@@ -92,7 +92,7 @@ class GoogleDriveIE(InfoExtractor):
if resolution:
f.update({
'width': resolution[0],
- 'height': resolution[0],
+ 'height': resolution[1],
})
formats.append(f)
self._sort_formats(formats)