commit: 62d10f0d325cf925855f5720163799298fe688dc
parent 274519dd08a312e3677c5bc9dd81bec743571261
Author: Sergey M․ <dstftw@gmail.com>
Date: Thu, 2 May 2019 00:36:52 +0700
[fox] Fix API error handling under python 2 (closes #20925)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/fox.py b/youtube_dl/extractor/fox.py
@@ -66,7 +66,7 @@ class FOXIE(AdobePassIE):
'https://api2.fox.com/v2.0/' + path,
video_id, data=data, headers=headers)
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:
entitlement_issues = self._parse_json(
e.cause.read().decode(), video_id)['entitlementIssues']
for e in entitlement_issues: