Skip to content

Commit

Permalink
Fix carrier chunk not having end attribute set.
Browse files Browse the repository at this point in the history
  • Loading branch information
haerfest committed Jan 1, 2022
1 parent 9060ca8 commit 9a88cfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wave2uef.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def state_sync(stream, chunks):

def state_carrier(stream, chunks):
chunks.append(CarrierChunk())
chunks[-1].start = stream.tell()
chunks[-1].start = chunks[-1].end = stream.tell()

try:
# A byte consists of a start bit (0), eight data bits, and a stop bit
Expand Down

0 comments on commit 9a88cfa

Please sign in to comment.