summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-23 04:37:11 (GMT)
committerGreg Ward <gward@python.net>2000-03-23 04:37:11 (GMT)
commit297dd9fed50f37f3d273e47615e5a927214d5d9e (patch)
tree4fa99f2d8d3265481476a747f35fd3b63a52332e /Lib
parentdeb6373fff220f0b0dd3024a49ba0628be7b1018 (diff)
downloadcpython-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.py2
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"