From dee19309cb8a7d42aaee18e2288fa588bf08467f Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Sat, 6 Feb 2021 13:08:20 -0500 Subject: [PATCH] fix: add a blank line for better visual spacing (#578) --- cibuildwheel/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 2fbec758..beda906d 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -282,7 +282,7 @@ def main() -> None: if not output_dir.exists(): output_dir.mkdir(parents=True) - with cibuildwheel.util.print_new_wheels("{n} wheels produced in {m:.0f} minutes:", output_dir): + with cibuildwheel.util.print_new_wheels("\n{n} wheels produced in {m:.0f} minutes:", output_dir): if platform == 'linux': cibuildwheel.linux.build(build_options) elif platform == 'windows':