Skip to content

Commit 522b9db

Browse files
committed
BUG: fix incorrect number of wheels in in logs
1 parent 13b086e commit 522b9db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cibuildwheel/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def print_summary(self, *, options: "Options") -> Generator[None, None, None]:
242242
github_summary = self._github_step_summary(duration=duration, options=options)
243243
Path(summary_path).write_text(filter_ansi_codes(github_summary), encoding="utf-8")
244244

245-
n_wheels = len([info for info in self.summary if not info.filename])
245+
n_wheels = len([info for info in self.summary if info.filename])
246246
s = "s" if n_wheels > 1 else ""
247247
duration_str = humanize.naturaldelta(duration)
248248
print()

0 commit comments

Comments
 (0)