diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-05-17 17:23:43 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-05-17 17:23:43 -0400 |
commit | ccc1b37086e04d65fbac880248fca3f57b42b901 (patch) | |
tree | 21913096aaf7fc299f6a2acd8e0551969b41f557 /coverage/cmdline.py | |
parent | d84b6cf48496528422ffb4622337bc9ad9baf324 (diff) | |
download | python-coveragepy-git-ccc1b37086e04d65fbac880248fca3f57b42b901.tar.gz |
Add a missing space to a help string.
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index 66a76fa6..0620c8ee 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -56,7 +56,7 @@ class Opts(object): include = optparse.make_option( '', '--include', action='store', metavar="PAT1,PAT2,...", - help="Include only files whose paths match one of these patterns." + help="Include only files whose paths match one of these patterns. " "Accepts shell-style wildcards, which must be quoted." ) pylib = optparse.make_option( |