commit: 56a7ee903360fe89cb5372805473b508153fb856
parent 0b4f03a56394dee070f6e1723af8ce3a9ce44bfb
Author: ping <ping@users.noreply.github.com>
Date: Fri, 29 Jan 2021 16:02:18 +0800
[vlive] Fix error message decoding for python 2 (#28004)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py
@@ -116,7 +116,7 @@ class VLiveIE(VLiveBaseIE):
headers={'Referer': 'https://www.vlive.tv/'}, query=query)
except ExtractorError as e:
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
- self.raise_login_required(json.loads(e.cause.read().decode())['message'])
+ self.raise_login_required(json.loads(e.cause.read().decode('utf-8'))['message'])
raise
def _real_extract(self, url):