From 1993f9ad0e2cf53c8dc441cbbb44eb2e3a190538 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Fri, 18 Feb 2000 00:13:53 +0000 Subject: 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. --- Lib/distutils/command/build_py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/distutils/command/build_py.py') diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 048962b29fb..f492ee374f8 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -14,7 +14,7 @@ from distutils.core import Command from distutils.errors import * -class BuildPy (Command): +class build_py (Command): description = "\"build\" pure Python modules (copy to build directory)" -- cgit v1.2.3