summaryrefslogtreecommitdiff
path: root/command/build_py.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-02-18 00:13:53 +0000
committerGreg Ward <gward@python.net>2000-02-18 00:13:53 +0000
commit0fe8bb260644b6dfaf64c07189108d2a045a1895 (patch)
tree367a9d6868ab6ef3d9683a8bd582751d8af62097 /command/build_py.py
parentd03109b3f6d31ba77bdcee2559d786776a9430ce (diff)
downloadpython-setuptools-git-0fe8bb260644b6dfaf64c07189108d2a045a1895.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 'command/build_py.py')
-rw-r--r--command/build_py.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/command/build_py.py b/command/build_py.py
index 048962b2..f492ee37 100644
--- a/command/build_py.py
+++ b/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)"