From 61f82e0e337f971da57f8f513abfe693edf95aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 20 Apr 2018 23:08:45 +0300 Subject: Spelling fixes to docs, docstrings, and comments (GH-6374) --- Lib/test/test_strptime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_strptime.py') diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py index af71008bec..de2773f6aa 100644 --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -363,7 +363,7 @@ class StrptimeTests(unittest.TestCase): _strptime._strptime("-01:30:30:123456", "%z") with self.assertRaises(ValueError) as err: _strptime._strptime("-01:3030", "%z") - self.assertEqual("Unconsistent use of : in -01:3030", str(err.exception)) + self.assertEqual("Inconsistent use of : in -01:3030", str(err.exception)) def test_timezone(self): # Test timezone directives. -- cgit v1.2.1