mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-10 13:02:30 +01:00
Decode the reason given on YouTube errors to avoid crashes (fixes issue #193)
This commit is contained in:
parent
2933532c5b
commit
8e686771af
@ -849,7 +849,7 @@ class YoutubeIE(InfoExtractor):
|
|||||||
return
|
return
|
||||||
if 'token' not in video_info:
|
if 'token' not in video_info:
|
||||||
if 'reason' in video_info:
|
if 'reason' in video_info:
|
||||||
self._downloader.trouble(u'ERROR: YouTube said: %s' % video_info['reason'][0])
|
self._downloader.trouble(u'ERROR: YouTube said: %s' % video_info['reason'][0].decode('utf-8'))
|
||||||
else:
|
else:
|
||||||
self._downloader.trouble(u'ERROR: "token" parameter not in video info for unknown reason')
|
self._downloader.trouble(u'ERROR: "token" parameter not in video info for unknown reason')
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user