diff options
author | Greg Ward <gward@python.net> | 2000-02-18 00:13:53 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-02-18 00:13:53 +0000 |
commit | d150123d5f3d47eff4ca504a258943a7aa942af2 (patch) | |
tree | fc61a539cd8d3f406800f5d2c09c1b0ed0647799 /Lib/distutils/command/install_lib.py | |
parent | bc74a9cdd6625ded6f1e1a7b07f3b325d9bd06b1 (diff) | |
download | cpython-d150123d5f3d47eff4ca504a258943a7aa942af2.tar.gz |
Renamed all command classes so they're exactly the same as the name of the
command itself: no more of this "FooBar class for foo_bar command"
silliness.
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 2e8a670686..e898ce0c18 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -6,7 +6,7 @@ import sys, string from distutils.core import Command from distutils.util import copy_tree -class InstallPy (Command): +class install_py (Command): description = "install pure Python modules" |