Commit f3d4aa6c authored by Vinay Sajip's avatar Vinay Sajip

Issue #7077: Fixed bug in previous fix.

parent a08f81fb
......@@ -770,7 +770,7 @@ class SysLogHandler(logging.Handler):
The record is formatted, and then sent to the syslog server. If
exception information is present, it is NOT sent to the server.
"""
msg = self.format(record)
msg = self.format(record) + '\000'
"""
We need to convert record level to lowercase, maybe this will
change in the future.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment