Skip to content

Commit

Permalink
Space out the log statements a little
Browse files Browse the repository at this point in the history
  • Loading branch information
joerick committed Apr 29, 2022
1 parent acc0796 commit 46702f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cibuildwheel/linux.py
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion cibuildwheel/macos.py
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion cibuildwheel/windows.py
Expand Up @@ -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:
Expand Down

0 comments on commit 46702f5

Please sign in to comment.