1
0
Fork 0
mirror of https://gitlab.com/dstftw/youtube-dl.git synced 2020-11-16 09:42:26 +00:00

[youtube:user] Fix id key (Fixes #1745)

This commit is contained in:
Philipp Hagemeister 2014-01-29 11:16:12 +01:00
parent 7eeb5bef24
commit b11cec4162

View file

@ -1662,7 +1662,7 @@ class YoutubeUserIE(InfoExtractor):
'_type': 'url', '_type': 'url',
'url': video_id, 'url': video_id,
'ie_key': 'Youtube', 'ie_key': 'Youtube',
'id': 'video_id', 'id': video_id,
'title': title, 'title': title,
} }
url_results = PagedList(download_page, self._GDATA_PAGE_SIZE) url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)