Skip to content

Commit f0f56f5

Browse files
authored
Fix escape bug
1 parent c756294 commit f0f56f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_miniesptool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def get_response(self, opcode, timeout=0.1): # pylint: disable=too-many-branche
350350
escaped_byte = True
351351
elif escaped_byte:
352352
if c == b"\xDD":
353-
reply += b"\xDC"
353+
reply += b"\xDB"
354354
elif c == b"\xDC":
355355
reply += b"\xC0"
356356
else:

0 commit comments

Comments
 (0)