diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-04 10:34:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-07-04 10:34:45 -0400 |
commit | c60118961ecb3543a9b71ca93513007e91318df4 (patch) | |
tree | 2fc485023e667dcaa64b1e536dc4bec9ff555e08 /coverage/cmdline.py | |
parent | a97cf2c471324b7db4a76b14826f5026ec24cfd2 (diff) | |
download | python-coveragepy-git-c60118961ecb3543a9b71ca93513007e91318df4.tar.gz |
Add --help output to command docs, and other reorganization
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index f7c82864..487f9699 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -351,8 +351,11 @@ CMDS = { description=( "Display information on the internals of coverage.py, " "for diagnosing problems. " - "Topics are 'data' to show a summary of the collected data, " - "or 'sys' to show installation information." + "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." ), ), |