From: Greg Ward <gward@python.net>
Date: Sat, 27 May 2000 01:33:49 +0000 (+0000)
Subject: Tweaked description, help text.
X-Git-Tag: v2.0b1~1653
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46380906d19c1696f0366be9231d03fe4b1a5981;p=python

Tweaked description, help text.
---

diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py
index 9b78326373..5888cafd44 100644
--- a/Lib/distutils/command/install_scripts.py
+++ b/Lib/distutils/command/install_scripts.py
@@ -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"),
     ]