diff options
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 = [] |