summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-02-21 12:12:02 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-02-21 12:12:02 +0200
commit19881f6008d276a9554fdf9a32c187f06a8cb38f (patch)
treeaf7bc36b8ce40c0e0f42f8a6ba4fb1cc6fb94ccc
parent6842296e0cf5fd2081f7724e6ec4e45c95d1a591 (diff)
parent3d2203034006a15ea653c96dc1508d76685e6f87 (diff)
downloadpylint-19881f6008d276a9554fdf9a32c187f06a8cb38f.tar.gz
Merged in cvrebert/pylint/missing-spaces (pull request #225)
add missing spaces between words in W1503's docs
-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 1dc9c13..ac8b876 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.')
}