We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85fe93b commit 054bcf2Copy full SHA for 054bcf2
src/jukebox/components/rfid/hardware/generic_usb/generic_usb.py
@@ -66,7 +66,7 @@ def _is_keyboard(device: evdev.InputDevice) -> bool:
66
is_keyboard_res = mandatory_keys.issubset(device_key_list) and reserved_key.isdisjoint(device_key_list)
67
except KeyError:
68
is_keyboard_res = False
69
- logger.debug(f"is_keyboard test for '{device.name}' at '{device.fn}' is '{is_keyboard_res}'")
+ logger.debug(f"is_keyboard test for '{device.name}' at '{device.path}' is '{is_keyboard_res}'")
70
return is_keyboard_res
71
72
0 commit comments