From 34cbc7ee8db36e85d2021455f468c5dc2da616b8 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Tue, 25 Mar 2014 23:46:51 +0100 Subject: [comedycentral] Better titles --- youtube_dl/extractor/comedycentral.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'youtube_dl/extractor/comedycentral.py') diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py index 346ecde..483ae57 100644 --- a/youtube_dl/extractor/comedycentral.py +++ b/youtube_dl/extractor/comedycentral.py @@ -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, } -- cgit v1.1