Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
Fix error in debug printout
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch committed Nov 2, 2023
1 parent 3b32175 commit 91c3091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbc2val/dbcfeederlib/dbcreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _rx_worker(self):
while self.is_running():
msg = self._canclient.recv(timeout=1)
if msg is not None:
log.debug("Processing CAN message with frame ID %#x", msg.get_arbitration_id)
log.debug("Processing CAN message with frame ID %#x", msg.get_arbitration_id())
self._process_can_message(msg.get_arbitration_id(), msg.get_data())
log.info("Stopped receiving CAN messages from bus")

Expand Down

0 comments on commit 91c3091

Please sign in to comment.