We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7a790a commit 7776a6dCopy full SHA for 7776a6d
src/pip/_internal/cli/cmdoptions.py
@@ -779,8 +779,7 @@ def _handle_no_use_pep517(
779
# If user doesn't wish to use pep517, we check if setuptools is installed
780
# and raise error if it is not.
781
if not importlib.util.find_spec("setuptools"):
782
- msg = """It is not possible to use --no-use-pep517 without setuptools
783
- installed."""
+ msg = "It is not possible to use --no-use-pep517 without setuptools installed."
784
raise_option_error(parser, option=option, msg=msg)
785
786
# Otherwise, --no-use-pep517 was passed via the command-line.
0 commit comments