about summary refs log tree commit diff
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-03-03 22:49:48 +0700
committerSergey M․ <dstftw@gmail.com>2017-03-03 22:49:48 +0700
commitd02d4fa0a90f3182d65504508105e8d86886c6ec (patch)
treeb18b85ef11ebf40b5bdc59bb45b80cd850491392 /youtube_dl/extractor/brightcove.py
parent692fa200cae38a7e37f646118a268ad408c8ab95 (diff)
downloadyoutube-dl-d02d4fa0a90f3182d65504508105e8d86886c6ec.tar.gz
youtube-dl-d02d4fa0a90f3182d65504508105e8d86886c6ec.tar.xz
youtube-dl-d02d4fa0a90f3182d65504508105e8d86886c6ec.zip
[brightcove:new] Raise GeoRestrictedError
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r--youtube_dl/extractor/brightcove.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 27685eed0..f8605be82 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -544,8 +544,10 @@ class BrightcoveNewIE(InfoExtractor):
         except ExtractorError as e:
             if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
                 json_data = self._parse_json(e.cause.read().decode(), video_id)[0]
-                raise ExtractorError(
-                    json_data.get('message') or json_data['error_code'], expected=True)
+                message = json_data.get('message') or json_data['error_code']
+                if json_data.get('error_subcode') == 'CLIENT_GEO':
+                    self.raise_geo_restricted(msg=message)
+                raise ExtractorError(message, expected=True)
             raise
 
         title = json_data['name'].strip()