summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2014-12-15 17:34:44 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2014-12-15 17:34:44 +0200
commit400f8b0fa0feca96007c66b63b85a3d793754b1b (patch)
treed5bd224438d1f42b707c46acd685dd74145fd9db
parent577e967ab56ada7c36c8973cdf2461675b128f23 (diff)
downloadpylint-400f8b0fa0feca96007c66b63b85a3d793754b1b.tar.gz
Fix typos in error messages.
-rw-r--r--checkers/python3.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/python3.py b/checkers/python3.py
index acf6b9f..59c37bf 100644
--- a/checkers/python3.py
+++ b/checkers/python3.py
@@ -255,12 +255,12 @@ class Python3Checker(checkers.BaseChecker):
'W1632': ('input built-in referenced',
'input-builtin',
'Used when the input built-in is referenced '
- '(backwards-incomptible semantics in Python 3)',
+ '(backwards-incompatible semantics in Python 3)',
{'maxversion': (3, 0)}),
'W1633': ('round built-in referenced',
'round-builtin',
'Used when the round built-in is referenced '
- '(backwards-incomptible semantics in Python 3)',
+ '(backwards-incompatible semantics in Python 3)',
{'maxversion': (3, 0)}),
}