Skip to content

Commit

Permalink
fix: Fix missing newline in output
Browse files Browse the repository at this point in the history
Regression originally caused by 8897ff8.
  • Loading branch information
Jan Beran committed Nov 5, 2024
1 parent 8897ff8 commit 26b676b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esptool/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def detect_chip(
detect_port.connect(connect_mode, connect_attempts, detecting=True)

def check_if_stub(instance):
print(f" {instance.CHIP_NAME}", end="")
print(f" {instance.CHIP_NAME}")
if detect_port.sync_stub_detected:
instance = instance.STUB_CLASS(instance)
instance.sync_stub_detected = True
Expand Down

0 comments on commit 26b676b

Please sign in to comment.