[Python-checkins] distutils2: Fix description (casing mismatch noticed by Konrad)

tarek.ziade python-checkins at python.org
Thu Aug 19 08:34:14 CEST 2010


tarek.ziade pushed 6637a9e0935e to distutils2:

http://hg.python.org/distutils2/rev/6637a9e0935e
changeset:   591:6637a9e0935e
user:        ?ric Araujo <merwok at netwok.org>
date:        Sun Aug 15 06:37:28 2010 +0200
summary:     Fix description (casing mismatch noticed by Konrad)
files:       src/distutils2/command/install_distinfo.py

diff --git a/src/distutils2/command/install_distinfo.py b/src/distutils2/command/install_distinfo.py
--- a/src/distutils2/command/install_distinfo.py
+++ b/src/distutils2/command/install_distinfo.py
@@ -25,9 +25,8 @@
 
 
 class install_distinfo(Command):
-    """Install a .dist-info directory for the package"""
 
-    description = 'Install a .dist-info directory for the package'
+    description = 'install a .dist-info directory for the distribution'
 
     user_options = [
         ('distinfo-dir=', None,

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list