Merge pull request #45984 from garethgreenaway/fixing_mac_tests_again

[oxygen] Missing `format` in the call to write.
This commit is contained in:
Gareth J. Greenaway 2018-02-12 11:06:03 -08:00 committed by GitHub
commit 2a6285d313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,7 +178,7 @@ if sys.version_info < (3, 2):
self.queue.put_nowait(record)
except self.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):