summary refs log tree commit diff
diff options
context:
space:
mode:
authorDave <github@eric-carlier.me>2016-07-28 19:23:51 +0200
committerSergey M․ <dstftw@gmail.com>2016-07-29 22:45:41 +0700
commit485fedf6fd801d7ae0796d661ae7624564f67df8 (patch)
tree001ff78120f9aed1d91431f95c39e1b82c5215fe
parentda0baba5c8a0ac6220cc0155044a01b97bc00a76 (diff)
downloadyoutube-dl-485fedf6fd801d7ae0796d661ae7624564f67df8.tar.gz
youtube-dl-485fedf6fd801d7ae0796d661ae7624564f67df8.tar.xz
youtube-dl-485fedf6fd801d7ae0796d661ae7624564f67df8.zip
[dailymotion:playlist] Optimize download archive processing
-rw-r--r--youtube_dl/extractor/dailymotion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py
index 1f92823b7..98d2c82f4 100644
--- a/youtube_dl/extractor/dailymotion.py
+++ b/youtube_dl/extractor/dailymotion.py
@@ -331,7 +331,7 @@ class DailymotionPlaylistIE(DailymotionBaseInfoExtractor):
 
             for video_id in re.findall(r'data-xid="(.+?)"', webpage):
                 if video_id not in video_ids:
-                    yield self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion')
+                    yield self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion', video_id)
                     video_ids.add(video_id)
 
             if re.search(self._MORE_PAGES_INDICATOR, webpage) is None: