[Python-checkins] distutils2: test options casing

tarek.ziade python-checkins at python.org
Sun Sep 19 10:20:22 CEST 2010


tarek.ziade pushed 7b4067a127ee to distutils2:

http://hg.python.org/distutils2/rev/7b4067a127ee
changeset:   631:7b4067a127ee
user:        Konrad Delong <konryd at gmail.com>
date:        Sun Aug 15 11:41:30 2010 +0200
summary:     test options casing
files:       src/distutils2/command/test.py

diff --git a/src/distutils2/command/test.py b/src/distutils2/command/test.py
--- a/src/distutils2/command/test.py
+++ b/src/distutils2/command/test.py
@@ -18,11 +18,11 @@
 
     user_options = [
         ('suite=', 's',
-            "Test suite to run (e.g. 'some_module.test_suite')"),
+         "test suite to run (for example: 'some_module.test_suite')"),
         ('runner=', None,
-            "Test runner to be called."),
+         "test runner to be called."),
         ('tests-require=', None,
-            "List of packages required to run the test suite."),
+         "list of packages required to run the test suite."),
     ]
 
     def initialize_options(self):

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


More information about the Python-checkins mailing list