summaryrefslogtreecommitdiff
path: root/pylint/checkers/stdlib.py
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
commit9011e26aa29e59324b332a59827c0b9da8dd9d73 (patch)
treee13eb55765f93fd9d893339b0e8ac1c05c1c837a /pylint/checkers/stdlib.py
parent77a58c4a741557a26c3e10f72b6ccfcf26678892 (diff)
parent7a10fa91dd8a24040d346979cdb0661e1d33bd7f (diff)
downloadpylint-git-9011e26aa29e59324b332a59827c0b9da8dd9d73.tar.gz
Merged in cvrebert/pylint/missing-spaces (pull request #225)
add missing spaces between words in W1503's docs
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 1dc9c138d..ac8b87645 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.')
}