From 341b91349ef4156758128083b29743190d2c084a Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 1 Aug 2019 15:54:06 +1000 Subject: [PATCH] wacom: fix the data logger being off by one Signed-off-by: Peter Hutterer --- tuhi/wacom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhi/wacom.py b/tuhi/wacom.py index f12d82d..7de5629 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -254,7 +254,7 @@ class DataLogger(object): def _send(self, source, data): command = data[0] - arguments = data[1:] + arguments = data[2:] if data[0] in self.commands: self.logger.debug(f'command: {self.commands[data[0]]}')