2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-29 05:03:34 +08:00

protocols/logging/LogParser: handle Windows CRLF

This commit is contained in:
Sebastien Bourdeauducq 2016-01-27 20:45:04 +01:00
parent 590354dbc8
commit 170b438b98

View File

@ -78,7 +78,7 @@ class LogParser:
entry = (await stream.readline())
if not entry:
break
self.line_input(entry[:-1].decode())
self.line_input(entry.decode().rstrip("\r\n"))
except:
logger.debug("exception in log forwarding", exc_info=True)
break