summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2015-02-21 01:22:21 -0800
committerChris Rebert <code@rebertia.com>2015-02-21 01:22:21 -0800
commitb759cbf470421462c0ec70a811cb91d8f296d513 (patch)
tree5af69a8206368c57ab7a62832c2285d3daedcf50
parent8de4a4444dbf9abdc768a7754289d8dcdc9761ca (diff)
downloadpylint-fix-typo.tar.gz
fix "datetetime" [sic] typofix-typo
-rw-r--r--pylint/checkers/stdlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py
index b6b8026..1dc9c13 100644
--- a/pylint/checkers/stdlib.py
+++ b/pylint/checkers/stdlib.py
@@ -88,7 +88,7 @@ class StdlibChecker(BaseChecker):
'See http://docs.python.org/2/library/functions.html#open'),
'W1502': ('Using datetime.time in a boolean context.',
'boolean-datetime',
- 'Using datetetime.time in a boolean context can hide '
+ 'Using datetime.time in a boolean context can hide '
'subtle bugs when the time they represent matches '
'midnight UTC. This behaviour was fixed in Python 3.5. '
'See http://bugs.python.org/issue13936 for reference.',