Skip to content

Commit

Permalink
hid: fix wrong variable name
Browse files Browse the repository at this point in the history
That's the endless joy of languages with no compile-time variable
lookup.

Fixes: ea01ab3 ("asyncio-based drivers for USB devices that present as HID")
  • Loading branch information
jktjkt committed Apr 30, 2023
1 parent 6d45aad commit 6923d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dali/driver/hid.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ async def _bus_watch(self):
current_command = None
continue
else:
self._log.debug("Failed config command (second frame didn't match): %s", current_comment)
self._log.debug("Failed config command (second frame didn't match): %s", current_command)
self.bus_traffic._invoke(current_command, None, True)
current_command = None
# Fall through to continue processing frame
Expand Down

0 comments on commit 6923d79

Please sign in to comment.