diff options
author | Juan M <joksnet@gmail.com> | 2013-02-26 18:06:43 +0100 |
---|---|---|
committer | Juan M <joksnet@gmail.com> | 2013-02-26 18:06:43 +0100 |
commit | 9e07cf2955ce3fc7dc7c4676ec32da9bfd6e3990 (patch) | |
tree | eb70beeaf61ab413871989bdf2b38feb61236595 /youtube_dl | |
parent | f03b88b3fb67a14998186787ba5c90f3e2c96a7b (diff) |
[YT Search] No results if items is not in response
When a query results of 0 items, the key items is not present in the
api_response dictionary, raising a KeyError.
Intead, look for the key and call trouble if it's not present.
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index d661d517d..a9646433e 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -1478,6 +1478,10 @@ class YoutubeSearchIE(InfoExtractor): return api_response = json.loads(data)['data'] + if not 'items' in api_response: + self._downloader.trouble(u'[youtube] No video results') + return + new_ids = list(video['id'] for video in api_response['items']) video_ids += new_ids |