aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/flickr.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-11-01 13:38:11 +0100
committerremitamine <remitamine@gmail.com>2015-11-01 13:38:11 +0100
commitf3003531a5622cc01501325b9f35dcb2424cfb70 (patch)
tree1377757660e4ac55dc147a80d692a79f095cde9a /youtube_dl/extractor/flickr.py
parent146672254e409bf97c82a302095fbfabf2c48928 (diff)
downloadyoutube-dl-f3003531a5622cc01501325b9f35dcb2424cfb70.tar.xz
[flickr] handle error message
Diffstat (limited to 'youtube_dl/extractor/flickr.py')
-rw-r--r--youtube_dl/extractor/flickr.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/flickr.py b/youtube_dl/extractor/flickr.py
index 0d5d6b0b9..e97754d36 100644
--- a/youtube_dl/extractor/flickr.py
+++ b/youtube_dl/extractor/flickr.py
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
from .common import InfoExtractor
from ..compat import compat_urllib_parse
from ..utils import (
+ ExtractorError,
int_or_none,
qualities,
)
@@ -39,7 +40,10 @@ class FlickrIE(InfoExtractor):
}
if secret:
query['secret'] = secret
- return self._download_json(self._API_BASE_URL + compat_urllib_parse.urlencode(query), video_id, note)
+ data = self._download_json(self._API_BASE_URL + compat_urllib_parse.urlencode(query), video_id, note)
+ if data['stat'] != 'ok':
+ raise ExtractorError(data['message'])
+ return data
def _real_extract(self, url):
video_id = self._match_id(url)