summaryrefslogtreecommitdiff
path: root/coverage
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-07-05 15:38:52 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-07-05 15:51:07 -0400
commitc1c1c6c25e8425bc554a53d3125b96600b87d1b6 (patch)
treea737c5e65267cb5665f9a3870b99010bf8284c0b /coverage
parent29538d90279d4d8d0aec89be5d1791363a3edf90 (diff)
downloadpython-coveragepy-git-c1c1c6c25e8425bc554a53d3125b96600b87d1b6.tar.gz
Add 'coverage debug' to help
Diffstat (limited to 'coverage')
-rw-r--r--coverage/cmdline.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py
index 487f9699..9c9ae868 100644
--- a/coverage/cmdline.py
+++ b/coverage/cmdline.py
@@ -349,13 +349,13 @@ CMDS = {
"debug", GLOBAL_ARGS,
usage="<topic>",
description=(
- "Display information on the internals of coverage.py, "
+ "Display information about the internals of coverage.py, "
"for diagnosing problems. "
"Topics are: "
"'data' to show a summary of the collected data; "
"'sys' to show installation information; "
"'config' to show the configuration; "
- "or 'premain' to show what is calling coverage."
+ "'premain' to show what is calling coverage."
),
),
@@ -831,6 +831,7 @@ HELP_TOPICS = {
Commands:
annotate Annotate source files with execution information.
combine Combine a number of data files.
+ debug Display information about the internals of coverage.py
erase Erase previously collected coverage data.
help Get help on using coverage.py.
html Create an HTML report.