From: Barry Warsaw Date: Fri, 9 Nov 2001 19:31:34 +0000 (+0000) Subject: test_formatdate(): Dang. Typo. X-Git-Tag: v2.2.1c1~807 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4e5c71962a093dadf425b7a7b9d83fe4063f883;p=python test_formatdate(): Dang. Typo. --- diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 06925d5862..6a6619988a 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -926,7 +926,7 @@ class TestMiscellaneous(unittest.TestCase): self.assertEqual(gdate, 'Fri, 09 Nov 2001 17:33:52 -0000') # It's a little tougher to test for localtime, but we'll try. Skip if # we don't have strptime(). - if hasattr(time, 'striptime'): + if hasattr(time, 'strptime'): gtime = time.strptime(gdate.split()[4], '%H:%M:%S') ltime = time.strptime(ldate.split()[4], '%H:%M:%S') zone = ldate.split()[5]