1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 11:18:11 +00:00

Ensure no colored output on Windows

Fix #228
This commit is contained in:
Julien Duponchelle 2015-06-09 10:05:00 +02:00
parent 5a32d8a779
commit 079715bc18

View File

@ -34,7 +34,7 @@ class ColouredFormatter(logging.Formatter):
message = super().format(record)
if not colour:
if not colour or sys.platform.startswith("win"):
return message.replace("#RESET#", "")
level_no = record.levelno
@ -90,7 +90,7 @@ class WinStreamHandler(logging.StreamHandler):
stream = self.stream
try:
msg = self.formatter.format(record, stream.isatty())
msg = self.formatter.format(record, stream.isatty())
stream.write(msg.encode(stream.encoding, errors="replace").decode(stream.encoding))
stream.write(self.terminator)
self.flush()