Fix list comp

This commit is contained in:
Thomas Kluyver 2017-05-19 17:08:45 +01:00 committed by Alex Gaynor
parent a32ebea3c4
commit fe5e9cc590
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ class WheelBuilder(object):
# Build the wheels.
logger.info(
'Building wheels for collected packages: %s',
', '.join([req.name for req in buildset]),
', '.join([req.name for (req, _) in buildset]),
)
with indent_log():
build_success, build_failure = [], []