]> granicus.if.org Git - python/commitdiff
Tweaked description, help text.
authorGreg Ward <gward@python.net>
Sat, 27 May 2000 01:33:49 +0000 (01:33 +0000)
committerGreg Ward <gward@python.net>
Sat, 27 May 2000 01:33:49 +0000 (01:33 +0000)
Lib/distutils/command/install_scripts.py

index 9b78326373acbb290bac0e39dc8932ebff7af9d4..5888cafd4455f5d37c9bfb63a9fd2d9f1e60267a 100644 (file)
@@ -11,12 +11,12 @@ import os
 from distutils.core import Command
 from stat import ST_MODE
 
-class install_scripts(Command):
+class install_scripts (Command):
 
-    description = "install scripts"
+    description = "install scripts (Python or otherwise)"
 
     user_options = [
-        ('install-dir=', 'd', "directory to install to"),
+        ('install-dir=', 'd', "directory to install scripts to"),
         ('build-dir=','b', "build directory (where to install from)"),
         ('skip-build', None, "skip the build steps"),
     ]