summaryrefslogtreecommitdiff
path: root/pylint/checkers/stdlib.py
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-02-21 01:36:09 -0800
committerChris Rebert <code@rebertia.com>2015-02-21 01:36:09 -0800
commit7a10fa91dd8a24040d346979cdb0661e1d33bd7f (patch)
treedbbe92b4a2a3988b987e26962564603c952fccea /pylint/checkers/stdlib.py
parentee1b4f440bc858ebe8debee7468d3b663d02c01c (diff)
downloadpylint-git-7a10fa91dd8a24040d346979cdb0661e1d33bd7f.tar.gz
add missing spaces between words in W1503's docs
--HG-- branch : missing-spaces
Diffstat (limited to 'pylint/checkers/stdlib.py')
-rw-r--r--pylint/checkers/stdlib.py4
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.')
}