From: Sergey M․ Date: Sat, 8 Jul 2017 17:26:13 +0000 (+0700) Subject: [googledrive] Fix height extraction (closes #13603) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=8b347a389eaa6d545ada901c2e236a5eb2272960;p=youtube-dl [googledrive] Fix height extraction (closes #13603) --- 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)