1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

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

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 = [], []