Missing format in the call to write.

This commit is contained in:
Gareth J. Greenaway 2018-02-12 10:38:51 -08:00 committed by rallytime
parent e64764499a
commit a8c2cd8066
No known key found for this signature in database
GPG Key ID: E8F1A4B90D0DEA19

View File

@ -179,7 +179,7 @@ if sys.version_info < (3, 2):
self.queue.put_nowait(record)
except queue.Full:
sys.stderr.write('[WARNING ] Message queue is full, '
'unable to write "{0}" to log', record
'unable to write "{0}" to log'.format(record)
)
def prepare(self, record):