Private GIT

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

Merge branch 'unneeded-continue' into develop

parents 5f4a3a9e de3e272c
Branches
Tags
No related merge requests found
...@@ -183,11 +183,6 @@ class Logger(object): ...@@ -183,11 +183,6 @@ class Logger(object):
# parse and submit errors to issue tracker # parse and submit errors to issue tracker
for curError in sorted(classes.ErrorViewer.errors, key=lambda error: error.time, reverse=True)[:500]: for curError in sorted(classes.ErrorViewer.errors, key=lambda error: error.time, reverse=True)[:500]:
#Skip SSL Error, we pointed them to a URL.
if re.search('http://git.io/vJrkM', curError.message):
classes.ErrorViewer.errors.remove(curError)
continue
try: try:
title_Error = str(curError.title) title_Error = str(curError.title)
if not len(title_Error) or title_Error == 'None': if not len(title_Error) or title_Error == 'None':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment