From 26b676bef7ef0f87317ed99c676fb30855bc8697 Mon Sep 17 00:00:00 2001 From: Jan Beran Date: Tue, 5 Nov 2024 11:26:05 +0100 Subject: [PATCH] fix: Fix missing newline in output Regression originally caused by 8897ff8e. --- esptool/cmds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esptool/cmds.py b/esptool/cmds.py index f04decf25..3b079166b 100644 --- a/esptool/cmds.py +++ b/esptool/cmds.py @@ -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