diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-07-31 12:43:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 12:43:05 +0100 |
commit | 5cef9ab648c49c891f434bc0914b5738d81db270 (patch) | |
tree | 49a260d4d420eb5f0a37a84e0e7763d9fa819a19 | |
parent | 1440ac75cb3337f67a9f0b1e0d340de03b7217a1 (diff) | |
parent | 1072266e366078e8de0505c2719c7a0f5f6b2a40 (diff) | |
download | python-setuptools-git-5cef9ab648c49c891f434bc0914b5738d81db270.tar.gz |
Merge pull request #3474 from jnoortheen/patch-1
docs: correct calling setuptools commands
-rw-r--r-- | docs/deprecated/commands.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/deprecated/commands.rst b/docs/deprecated/commands.rst index ebd0687a..d9d97a9e 100644 --- a/docs/deprecated/commands.rst +++ b/docs/deprecated/commands.rst @@ -15,7 +15,7 @@ You could also run commands in other circumstances: * ``setuptools`` projects without ``setup.py`` (e.g., ``setup.cfg``-only):: - python -c "import setuptools; setup()" --help + python -c "from setuptools import setup; setup()" --help * ``distutils`` projects (with a ``setup.py`` importing ``distutils``):: |