[pbs] Carry long line

This commit is contained in:
Sergey M․ 2015-10-09 00:09:10 +06:00
parent cbb7287204
commit 9d5fb3b58d
1 changed files with 5 additions and 1 deletions

View File

@ -238,7 +238,11 @@ class PBSIE(InfoExtractor):
'Downloading %s video url info' % encoding_name)
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')
if not format_url: