diff options
author | Ned Batchelder <nedbat@gmail.com> | 2014-09-24 06:52:58 -0400 |
---|---|---|
committer | Ned Batchelder <nedbat@gmail.com> | 2014-09-24 06:52:58 -0400 |
commit | bb8ed843cdd97a84c19d56590aab4183b189d034 (patch) | |
tree | 96e26c650cde5c257f00e49d96bbfd19cecd300c /coverage/cmdline.py | |
parent | 6ff5156a81b8a314f0c622e7daa22b46818ed908 (diff) | |
parent | 37a7fbce90bcd5c174eeece4bce5e34301c30a4d (diff) | |
download | python-coveragepy-bb8ed843cdd97a84c19d56590aab4183b189d034.tar.gz |
Merged in carlgieringer/coverage.py (pull request #30)
Describe acceptable wildcard style
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index bd10d5a..c723fa9 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -46,8 +46,8 @@ class Opts(object): include = optparse.make_option( '', '--include', action='store', metavar="PAT1,PAT2,...", - help="Include files only when their filename path matches one of " - "these patterns. Usually needs quoting on the command line." + help="Include only files whose paths match one of these patterns." + "Accepts shell-style wildcards, which must be quoted." ) pylib = optparse.make_option( '-L', '--pylib', action='store_true', @@ -62,14 +62,14 @@ class Opts(object): old_omit = optparse.make_option( '-o', '--omit', action='store', metavar="PAT1,PAT2,...", - help="Omit files when their filename matches one of these patterns. " - "Usually needs quoting on the command line." + help="Omit files whose paths match one of these patterns. " + "Accepts shell-style wildcards, which must be quoted." ) omit = optparse.make_option( '', '--omit', action='store', metavar="PAT1,PAT2,...", - help="Omit files when their filename matches one of these patterns. " - "Usually needs quoting on the command line." + help="Omit files whose paths match one of these patterns. " + "Accepts shell-style wildcards, which must be quoted." ) output_xml = optparse.make_option( '-o', '', action='store', dest="outfile", |