X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fvimeo.py;h=2389e7f0f4af5b828f76f17765fa4bcf61b424f8;hb=4519c1f43cd2d0634e85041aa8f950ddb745e285;hp=76e681bc360c5d45e7287413c1054dbdee8c84a8;hpb=a616f65471743abfacccb2639a299ea356839909;p=youtube-dl diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 76e681bc3..2389e7f0f 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -430,7 +430,7 @@ class VimeoIE(VimeoBaseInfoExtractor): if download_url and not source_file.get('is_cold') and not source_file.get('is_defrosting'): source_name = source_file.get('public_name', 'Original') if self._is_valid_url(download_url, video_id, '%s video' % source_name): - ext = source_file.get('extension', determine_ext(download_url)).lower(), + ext = source_file.get('extension', determine_ext(download_url)).lower() formats.append({ 'url': download_url, 'ext': ext,