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:
parent
590354dbc8
commit
170b438b98
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user