aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/InfoExtractors.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rw-r--r--youtube_dl/InfoExtractors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index bc26f2f30..da2294a6b 100644
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -3078,10 +3078,10 @@ class YoukuIE(InfoExtractor):
download_url = 'http://f.youku.com/player/getFlvPath/sid/%s_%02X/st/flv/fileid/%s?k=%s' % (sid, index, temp_fileid, key)
print download_url
info = {
- 'id': '%s_part%d' % (video_id, index),
+ 'id': '%s_part%02d' % (video_id, index),
'url': download_url,
'uploader': None,
- 'title': video_title
+ 'title': video_title,
'ext': ext,
'format': u'NA'
}