From b45977c2d290efaca8a4b59833d442fd8a17d357 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 9 Feb 2018 16:13:38 +1000 Subject: [PATCH] wacom: fix typo --- tuhi/wacom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhi/wacom.py b/tuhi/wacom.py index a5e883c..621750a 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -639,7 +639,7 @@ class WacomProtocolSlate(WacomProtocolSpark): w = self.get_dimensions('width') h = self.get_dimensions('height') if self.width != w or self.height != h: - logger.error(f'Uncompatible dimensions: {w}x{h}') + logger.error(f'incompatible dimensions: {w}x{h}') fw_high = self.get_firmware_version(0) fw_low = self.get_firmware_version(1) logger.info(f'firmware is {fw_high}-{fw_low}')