From 75583553ced342e90c2b985f2b81d9fe8dc533e8 Mon Sep 17 00:00:00 2001 From: Dustyn Gibson <dustyn.gibson@gmail.com> Date: Tue, 5 May 2015 23:36:28 -0700 Subject: [PATCH] Didn't rewrite the message in the log. Oops. --- sickbeard/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/logger.py b/sickbeard/logger.py index 51358637..9ff72da2 100644 --- a/sickbeard/logger.py +++ b/sickbeard/logger.py @@ -136,7 +136,7 @@ class Logger(object): if level == ERROR: #Replace the SSL error with a link to information about how to fix it. - re.sub(r'error \[Errno 1\] _ssl.c:\d{3}: error:\d{8}:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error', r'See: http://git.io/vJrkM', message) + message = re.sub(r'error \[Errno 1\] _ssl.c:\d{3}: error:\d{8}:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error', r'See: http://git.io/vJrkM', message) self.logger.exception(message, *args, **kwargs) classes.ErrorViewer.add(classes.UIError(message)) -- GitLab