diff options
author | Chris Rebert <code@rebertia.com> | 2015-02-21 01:36:09 -0800 |
---|---|---|
committer | Chris Rebert <code@rebertia.com> | 2015-02-21 01:36:09 -0800 |
commit | 7a10fa91dd8a24040d346979cdb0661e1d33bd7f (patch) | |
tree | dbbe92b4a2a3988b987e26962564603c952fccea /pylint | |
parent | ee1b4f440bc858ebe8debee7468d3b663d02c01c (diff) | |
download | pylint-git-7a10fa91dd8a24040d346979cdb0661e1d33bd7f.tar.gz |
add missing spaces between words in W1503's docs
--HG--
branch : missing-spaces
Diffstat (limited to 'pylint')
-rw-r--r-- | pylint/checkers/stdlib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py index b6b802623..a2009be55 100644 --- a/pylint/checkers/stdlib.py +++ b/pylint/checkers/stdlib.py @@ -96,8 +96,8 @@ class StdlibChecker(BaseChecker): 'W1503': ('Redundant use of %s with constant ' 'value %r', 'redundant-unittest-assert', - 'The first argument of assertTrue and assertFalse is' - 'a condition. If a constant is passed as parameter, that' + 'The first argument of assertTrue and assertFalse is ' + 'a condition. If a constant is passed as parameter, that ' 'condition will be always true. In this case a warning ' 'should be emitted.') } |