diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-09-29 00:36:06 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-09-29 00:36:06 +0200 |
commit | 9c44d2429b90dece734df778c63b04c15e91c1ca (patch) | |
tree | 8ab92c7d2e6e9ca62d261a42385332462ba08949 /youtube_dl/extractor/youtube.py | |
parent | d2e32f7df56ab497175437bffdcdfedbd71ca8d9 (diff) |
[vimeo:likes] Support large like lists (Fixes #3847)
Diffstat (limited to 'youtube_dl/extractor/youtube.py')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 99198e380..045507bc7 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -26,7 +26,7 @@ from ..utils import ( get_element_by_attribute, ExtractorError, int_or_none, - PagedList, + OnDemandPagedList, unescapeHTML, unified_strdate, orderedSet, @@ -1341,7 +1341,7 @@ class YoutubeUserIE(InfoExtractor): 'id': video_id, 'title': title, } - url_results = PagedList(download_page, self._GDATA_PAGE_SIZE) + url_results = OnDemandPagedList(download_page, self._GDATA_PAGE_SIZE) return self.playlist_result(url_results, playlist_title=username) |