logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: c5764b3f89b66e0148a186490f522ae7c259a55e
parent 0837992a226690d514eb01b7460bed4a33fddb30
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 22 Sep 2020 07:01:59 +0700

[downloader/http] Properly handle missing message in SSLError (closes #26646)

Diffstat:

Myoutube_dl/downloader/http.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py @@ -241,7 +241,7 @@ class HttpFD(FileDownloader): except socket.error as e: # SSLError on python 2 (inherits socket.error) may have # no errno set but this error message - if e.errno in (errno.ECONNRESET, errno.ETIMEDOUT) or getattr(e, 'message') == 'The read operation timed out': + if e.errno in (errno.ECONNRESET, errno.ETIMEDOUT) or getattr(e, 'message', None) == 'The read operation timed out': retry(e) raise