wacom: fix the data logger being off by one
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
96df9fc416
commit
341b91349e
|
@ -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]]}')
|
||||
|
|
Loading…
Reference in New Issue