summaryrefslogtreecommitdiff
path: root/checkers
diff options
context:
space:
mode:
Diffstat (limited to 'checkers')
-rw-r--r--checkers/classes.py4
-rw-r--r--checkers/newstyle.py2
-rw-r--r--checkers/variables.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/checkers/classes.py b/checkers/classes.py
index 3be5bd7..14aa90f 100644
--- a/checkers/classes.py
+++ b/checkers/classes.py
@@ -106,7 +106,7 @@ def _is_attribute_property(name, klass):
MSGS = {
'F0202': ('Unable to check methods signature (%s / %s)',
'method-check-failed',
- 'Used when PyLint has been unable to check methods signature \
+ 'Used when Pylint has been unable to check methods signature \
compatibility for an unexpected reason. Please report this kind \
if you don\'t make sense of it.'),
@@ -193,7 +193,7 @@ MSGS = {
),
'F0220': ('failed to resolve interfaces implemented by %s (%s)', # W0224
'unresolved-interface',
- 'Used when a PyLint as failed to find interfaces implemented by \
+ 'Used when a Pylint as failed to find interfaces implemented by \
a class'),
diff --git a/checkers/newstyle.py b/checkers/newstyle.py
index 335b052..4fae401 100644
--- a/checkers/newstyle.py
+++ b/checkers/newstyle.py
@@ -43,7 +43,7 @@ MSGS = {
{'maxversion': (3, 0)}),
'W1001': ('Use of "property" on an old style class',
'property-on-old-class',
- 'Used when PyLint detect the use of the builtin "property" \
+ 'Used when Pylint detect the use of the builtin "property" \
on an old style class while this is relying on new style \
classes features.',
{'maxversion': (3, 0)}),
diff --git a/checkers/variables.py b/checkers/variables.py
index b5ea34f..4420356 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -201,7 +201,7 @@ MSGS = {
'W0603': ('Using the global statement', # W0121
'global-statement',
'Used when you use the "global" statement to update a global \
- variable. PyLint just try to discourage this \
+ variable. Pylint just try to discourage this \
usage. That doesn\'t mean you can not use it !'),
'W0604': ('Using the global statement at the module level', # W0103
'global-at-module-level',