mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Fix list comp
This commit is contained in:
parent
a32ebea3c4
commit
fe5e9cc590
1 changed files with 1 additions and 1 deletions
|
@ -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 = [], []
|
||||
|
|
Loading…
Reference in a new issue