Browse Source

[comedycentral] Better titles

Philipp Hagemeister 11 years ago
parent
commit
34cbc7ee8d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      youtube_dl/extractor/comedycentral.py

+ 2 - 2
youtube_dl/extractor/comedycentral.py

@@ -191,7 +191,7 @@ class ComedyCentralShowsIE(InfoExtractor):
                 })
                 })
                 self._sort_formats(formats)
                 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({
             entries.append({
                 'id': guid,
                 'id': guid,
                 'title': virtual_id,
                 'title': virtual_id,
@@ -206,6 +206,6 @@ class ComedyCentralShowsIE(InfoExtractor):
         return {
         return {
             '_type': 'playlist',
             '_type': 'playlist',
             'entries': entries,
             'entries': entries,
-            'title': title,
+            'title': show_name + ' ' + title,
             'description': description,
             'description': description,
         }
         }