diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-06-30 19:22:12 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-06-30 19:22:12 (GMT) |
commit | 3106817c68a79c5e718ff61db34b7d363724ffd5 (patch) | |
tree | 060de5a9161c27fe105018d27155fc50229deddb /Lib/test | |
parent | 220e83946d3b8daa96eabe08c500ca92273ec391 (diff) | |
download | cpython-3106817c68a79c5e718ff61db34b7d363724ffd5.zip cpython-3106817c68a79c5e718ff61db34b7d363724ffd5.tar.gz cpython-3106817c68a79c5e718ff61db34b7d363724ffd5.tar.bz2 |
Fix typo in error message
Diffstat (limited to 'Lib/test')
-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 e49a1ba..2966e22 100644 --- a/Lib/test/test_strptime.py +++ b/Lib/test/test_strptime.py @@ -310,7 +310,7 @@ class StrptimeTests(unittest.TestCase): else: self.failUnless(strp_output[8] == -1, "LocaleTime().timezone has duplicate values but " - "timzone value not set to -1") + "timezone value not set to -1") def test_date_time(self): # Test %c directive |