diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-15 23:03:52 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-05-15 23:03:52 -0400 |
commit | fc920203f8ec8b87c331a9da091e82645a2e9b43 (patch) | |
tree | e7de67e634852f41259ef953b3b7041d88af0b5b /coverage/cmdline.py | |
parent | 8951e029c5c96ede37c6bb82344d5029c1622575 (diff) | |
download | python-coveragepy-fc920203f8ec8b87c331a9da091e82645a2e9b43.tar.gz |
Format the code to pylint's liking, and fix up the docstrings for omit and include.
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index 9148904..cb47690 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -35,8 +35,8 @@ class Opts(object): include = optparse.Option( '', '--include', action='store', metavar="PRE1,PRE2,...", - help="Include files only when their filename path starts with one of these " - "prefixes." + help="Include files only when their filename path starts with one of " + "these prefixes." ) pylib = optparse.Option( '-L', '--pylib', action='store_true', |