summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-12 04:22:31 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-12 04:22:31 +0100
commit66994535aceb1d4865957ab7ec70762d15716c25 (patch)
treefb56b5beb0ef306f2dcddd6e6672dbc35ec998cf /setuptools/command
parentb4c8399e46c8856b3f436ecd2462c9500d001a10 (diff)
downloadpython-setuptools-git-66994535aceb1d4865957ab7ec70762d15716c25.tar.gz
Parametrise command name
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/editable_wheel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/editable_wheel.py b/setuptools/command/editable_wheel.py
index 2c98983f..8a53de65 100644
--- a/setuptools/command/editable_wheel.py
+++ b/setuptools/command/editable_wheel.py
@@ -290,12 +290,12 @@ class editable_wheel(Command):
except Exception:
msg = f"""{traceback.format_exc()}\n
If you are seeing this warning it is very likely that a setuptools
- plugin or customization overrides the `build_py` command, without
+ plugin or customization overrides the `{cmd_name}` command, without
tacking into consideration how editable installs run build steps
starting from v64.0.0.
Plugin authors and developers relying on custom build steps are encouraged
- to update their `build_py` implementation considering the information in
+ to update their `{cmd_name}` implementation considering the information in
https://setuptools.pypa.io/en/latest/userguide/extension.html
about editable installs.