YoutubePlaylistIE: don't crash with empty lists (related #808)

The playlist_title wasn't initialized.
This commit is contained in:
Jaime Marquínez Ferrándiz 2013-04-27 10:41:52 +02:00
parent 3820df0106
commit aba8df23ed
2 changed files with 8 additions and 2 deletions

View file

@ -1723,12 +1723,11 @@ class YoutubePlaylistIE(InfoExtractor):
if 'feed' not in response:
self._downloader.report_error(u'Got a malformed response from YouTube API')
return
playlist_title = response['feed']['title']['$t']
if 'entry' not in response['feed']:
# Number of videos is a multiple of self._MAX_RESULTS
break
playlist_title = response['feed']['title']['$t']
videos += [ (entry['yt$position']['$t'], entry['content']['src'])
for entry in response['feed']['entry']
if 'content' in entry ]