This commit is contained in:
Tim Bentley 2014-04-04 21:20:00 +01:00
parent 151f1017c5
commit 576ab6e1f9
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ def trace_error_handler(logger):
"""
log_string = "OpenLP Error trace"
for tb in traceback.extract_stack():
log_string = ('%s\n File %s at line %d \n\t called %s' % (log_string, tb[0], tb[1], tb[3]))
log_string = '%s\n File %s at line %d \n\t called %s' % (log_string, tb[0], tb[1], tb[3])
logger.error(log_string)