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.
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index c8101a7..d890832 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -17,7 +17,7 @@
from distutils.errors import DistutilsExecError
-class Sdist (Command):
+class sdist (Command):
description = "create a source distribution (tarball, zip file, etc.)"