Skip to content

Commit

Permalink
chore: Fix typo on log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Schwab committed Jan 24, 2022
1 parent 5d3e13d commit f8b2f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/p1decrypter.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def process(self):
hex_input = binascii.hexlify(self._connection.read())

if self._state == self.STATE_IGNORING:
logging.debug("STATE_IGNORING: Wait for start byte, get: ({0})".format(hex_input))
logging.debug("STATE_IGNORING: Wait for start byte, got: ({0})".format(hex_input))
if hex_input == b'db':
logging.debug("STATE_IGNORING: Start byte has been detected: ({0})".format(hex_input))
self._state = self.STATE_STARTED
Expand Down

0 comments on commit f8b2f22

Please sign in to comment.