Skip to content

Commit

Permalink
Fix Freeseer#655 Error when logging a non-string
Browse files Browse the repository at this point in the history
  • Loading branch information
farazs committed Nov 17, 2014
1 parent a3a0dcd commit efe8c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freeseer/frontend/qtcommon/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def emit(self, record):
and Send it to all listeners by calling their message() method"""
self.format(record)
message = {
"message": record.msg % record.args,
"message": record.message,
"level": record.levelname,
"levelno": record.levelno,
"time": record.asctime,
Expand Down

0 comments on commit efe8c03

Please sign in to comment.