Skip to content

Commit 26b676b

Browse files
committed
fix: Fix missing newline in output
Regression originally caused by 8897ff8.
1 parent 8897ff8 commit 26b676b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

esptool/cmds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def detect_chip(
9999
detect_port.connect(connect_mode, connect_attempts, detecting=True)
100100

101101
def check_if_stub(instance):
102-
print(f" {instance.CHIP_NAME}", end="")
102+
print(f" {instance.CHIP_NAME}")
103103
if detect_port.sync_stub_detected:
104104
instance = instance.STUB_CLASS(instance)
105105
instance.sync_stub_detected = True

0 commit comments

Comments
 (0)