Private GIT

Skip to content
Snippets Groups Projects
Commit 703d6c6d authored by Alexandre Beloin's avatar Alexandre Beloin
Browse files

Changed limit to 1024 as per GitHub specs

parent a9d53482
No related branches found
No related tags found
No related merge requests found
......@@ -171,8 +171,8 @@ class Logger(object):
if not curError.title:
continue
if len(curError.title) > 254:
title_Error = str(curError.title[0:254])
if len(curError.title) > 1024:
title_Error = str(curError.title[0:1024])
else:
title_Error = str(curError.title)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment