1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 01:49:30 +00:00

[comedycentral] Better titles

This commit is contained in:
Philipp Hagemeister 2014-03-25 23:46:51 +01:00
parent b4461b6ebe
commit 34cbc7ee8d

View file

@ -191,7 +191,7 @@ class ComedyCentralShowsIE(InfoExtractor):
})
self._sort_formats(formats)
virtual_id = show_name + '-' + epTitle + ' part ' + compat_str(part_num + 1)
virtual_id = show_name + ' ' + epTitle + ' part ' + compat_str(part_num + 1)
entries.append({
'id': guid,
'title': virtual_id,
@ -206,6 +206,6 @@ class ComedyCentralShowsIE(InfoExtractor):
return {
'_type': 'playlist',
'entries': entries,
'title': title,
'title': show_name + ' ' + title,
'description': description,
}