summaryrefslogtreecommitdiff
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
commit3d2203034006a15ea653c96dc1508d76685e6f87 (patch)
tree8997783cb4eef52279858bb5b87f011e2c368a6f
parent8de4a4444dbf9abdc768a7754289d8dcdc9761ca (diff)
downloadpylint-missing-spaces.tar.gz
add missing spaces between words in W1503's docsmissing-spaces
-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 b6b8026..a2009be 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.')
}