commit: b11cec4162ea8deeda3bbaa081d402b76dfb3899
parent 7eeb5bef24b0c76e5d01d8f4ac6f94fb70416bb5
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Wed, 29 Jan 2014 11:16:12 +0100
[youtube:user] Fix id key (Fixes #1745)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
@@ -1662,7 +1662,7 @@ class YoutubeUserIE(InfoExtractor):
'_type': 'url',
'url': video_id,
'ie_key': 'Youtube',
- 'id': 'video_id',
+ 'id': video_id,
'title': title,
}
url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)