summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-18 00:34:45 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-18 00:34:45 +0100
commit1def5f359ef6e197e4cc5d610ed86e109e240080 (patch)
treeef8b727017ac17d03ccfaef09f5cad156c0f476f
parent15ec669374727c9bdc3aad0df141fdf305cb80be (diff)
downloadyoutube-dl-1def5f359ef6e197e4cc5d610ed86e109e240080.tar.gz
youtube-dl-1def5f359ef6e197e4cc5d610ed86e109e240080.tar.xz
youtube-dl-1def5f359ef6e197e4cc5d610ed86e109e240080.zip
[livestream] Correct playlist ID and add a test for it
-rw-r--r--youtube_dl/extractor/livestream.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py
index 5247c6f58..3642089f7 100644
--- a/youtube_dl/extractor/livestream.py
+++ b/youtube_dl/extractor/livestream.py
@@ -37,6 +37,7 @@ class LivestreamIE(InfoExtractor):
         'url': 'http://new.livestream.com/tedx/cityenglish',
         'info_dict': {
             'title': 'TEDCity2.0 (English)',
+            'id': '2245590',
         },
         'playlist_mincount': 4,
     }, {
@@ -148,7 +149,8 @@ class LivestreamIE(InfoExtractor):
                   if is_relevant(video_data, video_id)]
         if video_id is None:
             # This is an event page:
-            return self.playlist_result(videos, info['id'], info['full_name'])
+            return self.playlist_result(
+                videos, '%s' % info['id'], info['full_name'])
         else:
             if not videos:
                 raise ExtractorError('Cannot find video %s' % video_id)