mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[vimeo] 'ext' must be a string, not a tuple (fixes #8288)
There was an ',' at the end of the line.
This commit is contained in:
parent
a616f65471
commit
4519c1f43c
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ def _real_extract(self, url):
|
|||
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,
|
||||
|
|
Loading…
Reference in a new issue