Skip to content

Commit 820d878

Browse files
committed
Fixed #79 typo
1 parent 362daa4 commit 820d878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isotp/protocol.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ def process_tx(self):
717717
else:
718718
if flow_control_frame.flow_status == PDU.FlowStatus.Wait:
719719
if self.params.wftmax == 0:
720-
self.trigger_error(isotp.errors.UnsuportedWaitFrameError('Received a FlowControl requesting to wait, but fwtmax is set to 0'))
720+
self.trigger_error(isotp.errors.UnsuportedWaitFrameError('Received a FlowControl requesting to wait, but wftmax is set to 0'))
721721
elif self.wft_counter >= self.params.wftmax:
722722
self.trigger_error(isotp.errors.MaximumWaitFrameReachedError('Received %d wait frame which is the maximum set in params.wftmax' % (self.wft_counter)))
723723
self.stop_sending()

0 commit comments

Comments
 (0)