diff options
author | Greg Ward <gward@python.net> | 2000-05-23 01:55:16 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-05-23 01:55:16 (GMT) |
commit | d7ad5039cbbfee6f1927f7c4f8085293c06fc5ec (patch) | |
tree | 1df48affcfa0f7e8b84275d6b1b3ddfdb78ed852 /Lib/distutils/command/install_lib.py | |
parent | 5edcd90f8c7452b58bf8a070a724e588b1a94807 (diff) | |
download | cpython-d7ad5039cbbfee6f1927f7c4f8085293c06fc5ec.zip cpython-d7ad5039cbbfee6f1927f7c4f8085293c06fc5ec.tar.gz cpython-d7ad5039cbbfee6f1927f7c4f8085293c06fc5ec.tar.bz2 |
Fixed command description.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r-- | Lib/distutils/command/install_lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 5b3d77a..e9cd80d 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -8,7 +8,7 @@ from distutils.util import copy_tree class install_lib (Command): - description = "install pure Python modules" + description = "install all Python modules (extensions and pure Python)" user_options = [ ('install-dir=', 'd', "directory to install to"), |