summaryrefslogtreecommitdiff
path: root/coverage/cmdline.py
diff options
context:
space:
mode:
authorAlexander Todorov <atodorov@otb.bg>2015-07-29 19:55:43 +0300
committerAlexander Todorov <atodorov@otb.bg>2015-07-29 19:55:43 +0300
commita98ffc153e5dedb5fed97ed8cbf5fbad65a248bd (patch)
treeb34218ae28102eace9609d6dc64efc36ef84a824 /coverage/cmdline.py
parent24841ccad26b812b377aede975be1bb02e5a0fdb (diff)
downloadpython-coveragepy-a98ffc153e5dedb5fed97ed8cbf5fbad65a248bd.tar.gz
extend combine parameters to allow for file names and shell globs
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r--coverage/cmdline.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py
index 669c569..499444c 100644
--- a/coverage/cmdline.py
+++ b/coverage/cmdline.py
@@ -252,13 +252,13 @@ CMDS = {
),
'combine': CmdOptionParser("combine", GLOBAL_ARGS,
- usage = "<dir1> <dir2> ... <dirN>",
+ usage = "<path1> <path2> ... <pathN>",
description = "Combine data from multiple coverage files collected "
"with 'run -p'. The combined results are written to a single "
"file representing the union of the data. The positional "
- "arguments are directories from which the data files should be "
- "combined. By default, only data files in the current directory "
- "are combined."
+ "arguments are files or directories or shell globs "
+ "representing the data files which should be combined. "
+ "By default, only data files in the current directory are combined."
),
'debug': CmdOptionParser("debug", GLOBAL_ARGS,