Skip to content

Commit 7776a6d

Browse files
committed
Avoid unnecessary linebreak in long message
1 parent e7a790a commit 7776a6d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pip/_internal/cli/cmdoptions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,8 +779,7 @@ def _handle_no_use_pep517(
779779
# If user doesn't wish to use pep517, we check if setuptools is installed
780780
# and raise error if it is not.
781781
if not importlib.util.find_spec("setuptools"):
782-
msg = """It is not possible to use --no-use-pep517 without setuptools
783-
installed."""
782+
msg = "It is not possible to use --no-use-pep517 without setuptools installed."
784783
raise_option_error(parser, option=option, msg=msg)
785784

786785
# Otherwise, --no-use-pep517 was passed via the command-line.

0 commit comments

Comments
 (0)