summaryrefslogtreecommitdiff
path: root/src/distutils2/command
diff options
context:
space:
mode:
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):