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 | f0b3451e829de7311c39a18c0fb34312330981ef (patch) | |
tree | 18d749a0434445f0316ecc7b641739b2796e268b /coverage/config.py | |
parent | 4fb69b6c13c00bba910afe9d6beade673f4e4386 (diff) | |
download | python-coveragepy-git-f0b3451e829de7311c39a18c0fb34312330981ef.tar.gz |
Format the code to pylint's liking, and fix up the docstrings for omit and include.
Diffstat (limited to 'coverage/config.py')
-rw-r--r-- | coverage/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/config.py b/coverage/config.py index 34ed814d..133444d8 100644 --- a/coverage/config.py +++ b/coverage/config.py @@ -95,12 +95,12 @@ class CoverageConfig(object): def get_list(self, cp, section, option): """Read a list of strings from the ConfigParser `cp`. - + The value of `section` and `option` is treated as a comma- and newline- separated list of strings. Each value is stripped of whitespace. - + Returns the list of strings. - + """ value_list = cp.get(section, option) values = [] |