logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: e0dde1d8e28cee673e4362a4141a21326937999d
parent 62d10f0d325cf925855f5720163799298fe688dc
Author: Remita Amine <remitamine@gmail.com>
Date:   Thu,  2 May 2019 10:46:29 +0100

[fox] fix Uplynk PrePlay error handling under python 2(#20925)

Diffstat:

Myoutube_dl/extractor/fox.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/fox.py b/youtube_dl/extractor/fox.py @@ -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'])