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

change error message

This commit is contained in:
Hanjun Kim 2019-11-12 20:05:06 +09:00 committed by GitHub
parent 0363420239
commit b94725de4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -345,7 +345,7 @@ class WheelBuilder(object):
if self.build_options:
# PEP 517 does not support --build-options
logger.error('Cannot build wheel for %s using PEP 517 when '
'--build-options is present' % (req.name,))
'--build-option is present' % (req.name,))
return None
try:
logger.debug('Destination directory: %s', tempd)