aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-05-06 21:24:24 +0600
committerSergey M․ <dstftw@gmail.com>2015-05-06 21:24:24 +0600
commit74f728249fcf58b0c99eb69606b04b304d882423 (patch)
tree40a3e60d33c81096e28a0d01067c28187264dbac /youtube_dl
parentd6a1738892038940ef4af59a33aeddc99ef0c966 (diff)
downloadyoutube-dl-74f728249fcf58b0c99eb69606b04b304d882423.tar.xz
[extractor/common] Fallback to empty string for (yet) missing `format_id` in `_sort_formats` (Closes #5624)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 3ae5d5212..34e27a35a 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -764,7 +764,7 @@ class InfoExtractor(object):
f.get('fps') if f.get('fps') is not None else -1,
f.get('filesize_approx') if f.get('filesize_approx') is not None else -1,
f.get('source_preference') if f.get('source_preference') is not None else -1,
- f.get('format_id'),
+ f.get('format_id') if f.get('format_id') is not None else '',
)
formats.sort(key=_formats_key)