summaryrefslogtreecommitdiff
path: root/src/distutils2/command
diff options
context:
space:
mode:
author?ric Araujo <merwok@netwok.org>2010-08-20 00:56:31 +0200
committer?ric Araujo <merwok@netwok.org>2010-08-20 00:56:31 +0200
commit6a2fb52e673dd32c91ce7fbb2ec2902302093645 (patch)
tree51d1d1ff4026f8184e98f4143e1a3c040d38d4b9 /src/distutils2/command
parente0660e14ea322e6f5166e332f14f201d4be73f02 (diff)
downloaddisutils2-6a2fb52e673dd32c91ce7fbb2ec2902302093645.tar.gz
Post-merge touchups
Diffstat (limited to 'src/distutils2/command')
-rw-r--r--src/distutils2/command/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/distutils2/command/test.py b/src/distutils2/command/test.py
index 1eeb274..3c9d070 100644
--- a/src/distutils2/command/test.py
+++ b/src/distutils2/command/test.py
@@ -4,6 +4,7 @@ import unittest
from distutils2 import log
from distutils2.core import Command
+from distutils2.errors import DistutilsOptionError
from distutils2.util import resolve_name
try:
@@ -21,7 +22,7 @@ class test(Command):
('runner=', None,
"test runner to be called."),
('tests-require=', None,
- "list of packages required to run the test suite."),
+ "list of distributions required to run the test suite."),
]
def initialize_options(self):