diff options
| author | Sergey M․ <dstftw@gmail.com> | 2017-07-09 00:26:13 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2017-07-09 00:26:13 +0700 | 
| commit | 8b347a389eaa6d545ada901c2e236a5eb2272960 (patch) | |
| tree | a5bcc6b5de73abb07196ca3acf280686ed57f1ea | |
| parent | a49804816c0246d81b9d34d9f89f99fae06da887 (diff) | |
[googledrive] Fix height extraction (closes #13603)
| -rw-r--r-- | youtube_dl/extractor/googledrive.py | 2 | 
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)  | 
