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 | 0fe8bb260644b6dfaf64c07189108d2a045a1895 (patch) | |
| tree | 367a9d6868ab6ef3d9683a8bd582751d8af62097 /command/build_py.py | |
| parent | d03109b3f6d31ba77bdcee2559d786776a9430ce (diff) | |
| download | python-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.py | 2 |
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)" |
