From: Philipp Hagemeister Date: Thu, 18 Apr 2013 05:28:24 +0000 (+0200) Subject: Fix playlists with size 50i ∀ i∉ℕ (Closes #782) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=feba604e9256b48972dfe4b5658ada4b300581cd;p=youtube-dl Fix playlists with size 50i ∀ i∉ℕ (Closes #782) --- diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index cf31970ef..bac3a747d 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -1778,9 +1778,13 @@ class YoutubePlaylistIE(InfoExtractor): self._downloader.report_error(u'Invalid JSON in API response: ' + compat_str(err)) return - if not 'feed' in response or not 'entry' in response['feed']: + if 'feed' not in response: self._downloader.report_error(u'Got a malformed response from YouTube API') return + if 'entry' not in response['feed']: + # Number of videos is a multiple of self._MAX_RESULTS + break + videos += [ (entry['yt$position']['$t'], entry['content']['src']) for entry in response['feed']['entry'] if 'content' in entry ]