mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 11:42:43 +01:00
[pbs] Carry long line
This commit is contained in:
parent
cbb7287204
commit
9d5fb3b58d
@ -238,7 +238,11 @@ def _real_extract(self, url):
|
|||||||
'Downloading %s video url info' % encoding_name)
|
'Downloading %s video url info' % encoding_name)
|
||||||
|
|
||||||
if redirect_info['status'] == 'error':
|
if redirect_info['status'] == 'error':
|
||||||
raise ExtractorError('PBS said: %s' % self._ERRORS.get(redirect_info['http_code'], redirect_info['message']), expected=True)
|
raise ExtractorError(
|
||||||
|
'%s said: %s' % (
|
||||||
|
self.IE_NAME,
|
||||||
|
self._ERRORS.get(redirect_info['http_code'], redirect_info['message'])),
|
||||||
|
expected=True)
|
||||||
|
|
||||||
format_url = redirect_info.get('url')
|
format_url = redirect_info.get('url')
|
||||||
if not format_url:
|
if not format_url:
|
||||||
|
Loading…
Reference in New Issue
Block a user