summaryrefslogtreecommitdiff
path: root/pylint/checkers/classes.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2016-12-30 19:28:32 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2016-12-30 19:28:32 +0200
commit6712bbe45888a7f26ca5c3e54f45c3956d87cc58 (patch)
tree44443f08a6237ca18b2c242c82b1ce5d880017d4 /pylint/checkers/classes.py
parent607e2bfcb236faa527a738a84a48434a236fd08d (diff)
downloadpylint-git-6712bbe45888a7f26ca5c3e54f45c3956d87cc58.tar.gz
Change the text of arguments-differ by making it more explicit
Diffstat (limited to 'pylint/checkers/classes.py')
-rw-r--r--pylint/checkers/classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py
index 85e2eead6..a5155f8c0 100644
--- a/pylint/checkers/classes.py
+++ b/pylint/checkers/classes.py
@@ -376,7 +376,7 @@ MSGS = {
'Used when a method doesn\'t use its bound instance, and so could '
'be written as a function.'
),
- 'W0221': ('Arguments number differs from %s %r method',
+ 'W0221': ('Parameters differ from %s %r method',
'arguments-differ',
'Used when a method has a different number of arguments than in '
'the implemented interface or in an overridden method.'),