Explorar o código

[socks] Fix error reporting (#11355)

Yen Chi Hsuan %!s(int64=9) %!d(string=hai) anos
pai
achega
8344296619
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      youtube_dl/socks.py

+ 1 - 1
youtube_dl/socks.py

@@ -60,7 +60,7 @@ class ProxyError(IOError):
 
 
     def __init__(self, code=None, msg=None):
     def __init__(self, code=None, msg=None):
         if code is not None and msg is None:
         if code is not None and msg is None:
-            msg = self.CODES.get(code) and 'unknown error'
+            msg = self.CODES.get(code) or 'unknown error'
         super(ProxyError, self).__init__(code, msg)
         super(ProxyError, self).__init__(code, msg)