diff options
author | Greg Ward <gward@python.net> | 2000-05-27 01:33:49 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-05-27 01:33:49 (GMT) |
commit | 46380906d19c1696f0366be9231d03fe4b1a5981 (patch) | |
tree | fcc7ef453c41b53dc00498614d53424eaad211cc /Lib/distutils | |
parent | cae5a1f44446afba20252ef2ed6bd9c087ead403 (diff) | |
download | cpython-46380906d19c1696f0366be9231d03fe4b1a5981.zip cpython-46380906d19c1696f0366be9231d03fe4b1a5981.tar.gz cpython-46380906d19c1696f0366be9231d03fe4b1a5981.tar.bz2 |
Tweaked description, help text.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/install_scripts.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py index 9b78326..5888caf 100644 --- a/Lib/distutils/command/install_scripts.py +++ b/Lib/distutils/command/install_scripts.py @@ -11,12 +11,12 @@ import os from distutils.core import Command from stat import ST_MODE -class install_scripts(Command): +class install_scripts (Command): - description = "install scripts" + description = "install scripts (Python or otherwise)" user_options = [ - ('install-dir=', 'd', "directory to install to"), + ('install-dir=', 'd', "directory to install scripts to"), ('build-dir=','b', "build directory (where to install from)"), ('skip-build', None, "skip the build steps"), ] |