From fc920203f8ec8b87c331a9da091e82645a2e9b43 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 15 May 2010 23:03:52 -0400 Subject: Format the code to pylint's liking, and fix up the docstrings for omit and include. --- coverage/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'coverage/config.py') diff --git a/coverage/config.py b/coverage/config.py index 34ed814..133444d 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 = [] -- cgit v1.2.1