summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-13 10:59:43 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-13 10:59:43 +0100
commitddf7b953d1605374e6aa62ed4eb3760b3c5bcba0 (patch)
tree385125ff1985727207d73407863a08bc60775297 /setuptools/command
parent8f31d52401a09df3e372279be7509a56b024042a (diff)
downloadpython-setuptools-git-ddf7b953d1605374e6aa62ed4eb3760b3c5bcba0.tar.gz
Improve warning message
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build.py b/setuptools/command/build.py
index 7ab60ce6..12a43622 100644
--- a/setuptools/command/build.py
+++ b/setuptools/command/build.py
@@ -15,7 +15,7 @@ class build(_build):
subcommands = {cmd[0] for cmd in _build.sub_commands}
if subcommands - _ORIGINAL_SUBCOMMANDS:
msg = """
- It seems that you are using `distutils.command.build.build` to add
+ It seems that you are using `distutils.command.build` to add
new subcommands. Using `distutils` directly is considered deprecated,
please use `setuptools.command.build`.
"""