diff options
Diffstat (limited to 'pylint/utils/utils.py')
-rw-r--r-- | pylint/utils/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py index c3d120458..14f57a16c 100644 --- a/pylint/utils/utils.py +++ b/pylint/utils/utils.py @@ -277,7 +277,7 @@ def get_global_option( def _splitstrip(string, sep=","): """Return a list of stripped string by splitting the string given as - argument on `sep` (',' by default). Empty string are discarded. + argument on `sep` (',' by default), empty strings are discarded. >>> _splitstrip('a, b, c , 4,,') ['a', 'b', 'c', '4'] |