Explorar o código

[pbs] Carry long line

Sergey M․ %!s(int64=10) %!d(string=hai) anos
pai
achega
9d5fb3b58d
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      youtube_dl/extractor/pbs.py

+ 5 - 1
youtube_dl/extractor/pbs.py

@@ -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: