Private GIT

Skip to content
Snippets Groups Projects
Commit 75583553 authored by Dustyn Gibson's avatar Dustyn Gibson
Browse files

Didn't rewrite the message in the log. Oops.

parent bde875f8
Branches
Tags
No related merge requests found
...@@ -136,7 +136,7 @@ class Logger(object): ...@@ -136,7 +136,7 @@ class Logger(object):
if level == ERROR: if level == ERROR:
#Replace the SSL error with a link to information about how to fix it. #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) self.logger.exception(message, *args, **kwargs)
classes.ErrorViewer.add(classes.UIError(message)) classes.ErrorViewer.add(classes.UIError(message))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment