From 46702f581da2dde13ea3d2a49dfa55df226db9f8 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 29 Apr 2022 13:32:03 +0100 Subject: [PATCH] Space out the log statements a little --- cibuildwheel/linux.py | 2 +- cibuildwheel/macos.py | 2 +- cibuildwheel/windows.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 7be028a1c..036eb36f0 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -181,7 +181,7 @@ def build_on_docker( if abi3_wheel: log.step_end() print( - f"Found previously built wheel {abi3_wheel.name}, that's compatible with {config.identifier}. Skipping build step..." + f"\nFound previously built wheel {abi3_wheel.name}, that's compatible with {config.identifier}. Skipping build step..." ) repaired_wheels = [abi3_wheel] else: diff --git a/cibuildwheel/macos.py b/cibuildwheel/macos.py index aed483ad4..7100cd05a 100644 --- a/cibuildwheel/macos.py +++ b/cibuildwheel/macos.py @@ -325,7 +325,7 @@ def build(options: Options, tmp_path: Path) -> None: if abi3_wheel: log.step_end() print( - f"Found previously built wheel {abi3_wheel.name}, that's compatible with {config.identifier}. Skipping build step..." + f"\nFound previously built wheel {abi3_wheel.name}, that's compatible with {config.identifier}. Skipping build step..." ) repaired_wheel = abi3_wheel else: diff --git a/cibuildwheel/windows.py b/cibuildwheel/windows.py index 85f76a04b..1e95c225e 100644 --- a/cibuildwheel/windows.py +++ b/cibuildwheel/windows.py @@ -281,7 +281,7 @@ def build(options: Options, tmp_path: Path) -> None: if abi3_wheel: log.step_end() print( - f"Found previously built wheel {abi3_wheel.name}, that's compatible with {config.identifier}. Skipping build step..." + f"\nFound previously built wheel {abi3_wheel.name}, that's compatible with {config.identifier}. Skipping build step..." ) repaired_wheel = abi3_wheel else: