diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2018-04-20 23:08:45 +0300 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-04-20 16:08:45 -0400 |
commit | 61f82e0e337f971da57f8f513abfe693edf95aa5 (patch) | |
tree | d783b7677df1f57618381c0b7c925a990a115444 /Lib/test/test_strptime.py | |
parent | 0399cf9b5e370516e3d0aed6a63ff74aff5eadb5 (diff) | |
download | cpython-git-61f82e0e337f971da57f8f513abfe693edf95aa5.tar.gz |
Spelling fixes to docs, docstrings, and comments (GH-6374)
Diffstat (limited to 'Lib/test/test_strptime.py')
-rw-r--r-- | Lib/test/test_strptime.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |