summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coverage/cmdline.py2
-rw-r--r--tests/test_cmdline.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py
index d7dfa68c..8f6b0a90 100644
--- a/coverage/cmdline.py
+++ b/coverage/cmdline.py
@@ -614,7 +614,7 @@ class CoverageScript(object):
# they will be None if they have not been specified.
if getattr(options, opt_name) is not None:
self.help_fn(
- "Options affecting multiprocessing must be specified "
+ "Options affecting multiprocessing must only be specified "
"in a configuration file."
)
return ERR
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index a4d01880..59c76c73 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -470,7 +470,7 @@ class CmdLineTest(BaseCmdLineTest):
# config file.
self.command_line("run --concurrency=multiprocessing --branch foo.py", ret=ERR)
self.assertIn(
- "Options affecting multiprocessing must be specified in a configuration file.",
+ "Options affecting multiprocessing must only be specified in a configuration file.",
self.stderr()
)