[fox] fix Uplynk PrePlay error handling under python 2(#20925)
This commit is contained in:
parent
62d10f0d32
commit
e0dde1d8e2
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class FOXIE(AdobePassIE):
|
|||
try:
|
||||
m3u8_url = self._download_json(release_url, video_id)['playURL']
|
||||
except ExtractorError as e:
|
||||
if isinstance(e.cause, compat_HTTPError) and e.cause.status == 403:
|
||||
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
|
||||
error = self._parse_json(e.cause.read().decode(), video_id)
|
||||
if error.get('exception') == 'GeoLocationBlocked':
|
||||
self.raise_geo_restricted(countries=['US'])
|
||||
|
|
Loading…
Reference in a new issue