summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2013-12-20 14:00:07 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2013-12-20 14:00:07 +0100
commitb6eed19cafe67e0a513e3cd4628e0263dd0b9854 (patch)
tree361cd42cdc8d45b38f5cbcd24602fba537441783
parent057af046552e6a07e8d32ae66f82dc22868a9176 (diff)
downloadpylint-b6eed19cafe67e0a513e3cd4628e0263dd0b9854.tar.gz
fix unproperly spelled max version for missing-super-argument
-rw-r--r--checkers/newstyle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/newstyle.py b/checkers/newstyle.py
index 42cab1c..ff9bbc2 100644
--- a/checkers/newstyle.py
+++ b/checkers/newstyle.py
@@ -38,7 +38,7 @@ MSGS = {
'missing-super-argument',
'Used when the super builtin didn\'t receive an \
argument on Python 2',
- {'maxversion': (2, 7)}),
+ {'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" \