summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2014-11-15 18:41:53 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2014-11-15 18:41:53 +0200
commit7fae320e7f54bb21e64fa0788653a1acea447366 (patch)
tree44a60e0161331343c10a5a8d6e097ecf77da6956
parentab3c63be3d659c8f5c7654dbdfd88dd6718af47f (diff)
downloadpylint-7fae320e7f54bb21e64fa0788653a1acea447366.tar.gz
Change the message ids, for consistency.
-rw-r--r--checkers/python3.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/python3.py b/checkers/python3.py
index d83709f..4e26923 100644
--- a/checkers/python3.py
+++ b/checkers/python3.py
@@ -68,7 +68,7 @@ class Python3Checker(checkers.BaseChecker):
"instead of 'raise foo(bar)'.",
{'maxversion': (3, 0),
'old_names': [('W0121', 'old-raise-syntax')]}),
- 'E1606': ('Use of the `` operator',
+ 'E1605': ('Use of the `` operator',
'backtick',
'Used when the deprecated "``" (backtick) operator is used '
'instead of the str() function.',
@@ -363,7 +363,7 @@ class Python3TokenChecker(checkers.BaseTokenChecker):
__implements__ = interfaces.ITokenChecker
name = 'python3'
msgs = {
- 'E1605': ('Use of long suffix',
+ 'E1606': ('Use of long suffix',
'long-suffix',
'Used when "l" or "L" is used to mark a long integer. '
'This will not work in Python 3, since `int` and `long` '