Skip to content

Commit

Permalink
BF: Was logging all messages as unparsable, even after they were pars…
Browse files Browse the repository at this point in the history
…ed, due to indent
  • Loading branch information
todd committed Aug 28, 2024
1 parent 3f742fb commit 09758b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions psychopy_bbtk/tpad.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,8 @@ def dispatchMessages(self):
# dispatch to node
message = node.parseMessage(parts)
node.receiveMessage(message)
else:
logging.debug(f"Received unparsable message from TPad: {line}")
else:
logging.debug(f"Received unparsable message from TPad: {line}")
# mark that a dispatch has finished
self._dispatchInProgress = False

Expand Down

0 comments on commit 09758b3

Please sign in to comment.