From f19c6065738d35601137da3b2aa3769bcc8e7989 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 13 Aug 2020 11:50:17 +0100 Subject: [PATCH] Fix comment --- cibuildwheel/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 6f4698b5..bb80fda8 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -234,7 +234,7 @@ def build(options: BuildOptions) -> None: def troubleshoot(package_dir: Path, error: Exception) -> None: if (isinstance(error, subprocess.CalledProcessError) and error.cmd[0:2] == ['pip', 'wheel']): - # the bash script failed + # the 'pip wheel' step failed. print('Checking for common errors...') so_files = list(package_dir.glob('**/*.so'))