From 7f8222b3510fdbcb5cf48bd91fff9a6764533d52 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 15 Aug 2019 10:01:11 +1000 Subject: [PATCH] wacom: add missing linebreaks to the yml log file Signed-off-by: Peter Hutterer --- tuhi/wacom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tuhi/wacom.py b/tuhi/wacom.py index ca45e68..f935a58 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -243,7 +243,7 @@ class DataLogger(object): self.logfile.write(f'# {self.commands[data[0]]}\n') self.logfile.write(f' - recv: {list2hexlist(data)}\n') if source != 'NORDIC': - self.logfile.write(f' source: {source}') + self.logfile.write(f' source: {source}\n') def _send(self, source, data): command = data[0] @@ -258,7 +258,7 @@ class DataLogger(object): self.logfile.write(f'# {self.commands[data[0]]}\n') self.logfile.write(f' - send: {list2hexlist(data)}\n') if source != 'NORDIC': - self.logfile.write(f' source: {source}') + self.logfile.write(f' source: {source}\n') class WacomException(Exception):