diff options
author | Greg Ward <gward@python.net> | 2000-03-23 04:37:11 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-23 04:37:11 (GMT) |
commit | 297dd9fed50f37f3d273e47615e5a927214d5d9e (patch) | |
tree | 4fa99f2d8d3265481476a747f35fd3b63a52332e /Lib | |
parent | deb6373fff220f0b0dd3024a49ba0628be7b1018 (diff) | |
download | cpython-297dd9fed50f37f3d273e47615e5a927214d5d9e.zip cpython-297dd9fed50f37f3d273e47615e5a927214d5d9e.tar.gz cpython-297dd9fed50f37f3d273e47615e5a927214d5d9e.tar.bz2 |
Fixed the class name.
Diffstat (limited to 'Lib')
-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 33cf689..eaaa1c7 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 install_py (Command): +class install_lib (Command): description = "install pure Python modules" |