LogToSignalHandler: rename local emit() variable to prevent confusion

This commit is contained in:
Chris PeBenito 2016-03-07 13:25:44 -05:00
parent d268e7e7f7
commit faaf1a5b64

View File

@ -37,8 +37,8 @@ class LogToSignalHandler(Handler, QObject):
Handler.__init__(self)
QObject.__init__(self)
def emit(self, message):
msg = self.format(message)
def emit(self, record):
msg = self.format(record)
if msg:
self.message.emit(msg)