Put a space around a comma for readability.

This commit is contained in:
Alex Gaynor 2014-03-03 22:44:28 -08:00
parent d7c6b0276a
commit b8e9500567
1 changed files with 2 additions and 2 deletions

View File

@ -543,10 +543,10 @@ class WheelBuilder(object):
if not buildset:
return
#build the wheels
# Build the wheels.
logger.notify(
'Building wheels for collected packages: %s' %
','.join([req.name for req in buildset])
', '.join([req.name for req in buildset])
)
logger.indent += 2
build_success, build_failure = [], []