mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-13 18:51:03 +01:00
[viki] Fix typo
This commit is contained in:
parent
d01924f488
commit
4d8ee01389
@ -157,7 +157,7 @@ def _real_extract(self, url):
|
|||||||
title = 'Episode %d' % video.get('number') if video.get('type') == 'episode' else video.get('id') or video_id
|
title = 'Episode %d' % video.get('number') if video.get('type') == 'episode' else video.get('id') or video_id
|
||||||
container_titles = video.get('container', {}).get('titles')
|
container_titles = video.get('container', {}).get('titles')
|
||||||
if container_titles:
|
if container_titles:
|
||||||
container_title = container_titles.get('en') or container_titles[titles.keys()[0]]
|
container_title = container_titles.get('en') or container_titles[container_titles.keys()[0]]
|
||||||
title = '%s - %s' % (container_title, title)
|
title = '%s - %s' % (container_title, title)
|
||||||
|
|
||||||
descriptions = video.get('descriptions')
|
descriptions = video.get('descriptions')
|
||||||
|
Loading…
Reference in New Issue
Block a user