Index: rfc822.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/rfc822.py,v retrieving revision 1.74 diff -u -r1.74 rfc822.py --- rfc822.py 11 Sep 2002 02:32:14 -0000 1.74 +++ rfc822.py 1 Apr 2003 23:12:04 -0000 @@ -939,7 +939,7 @@ """Convert a time string to a time tuple.""" t = parsedate_tz(data) if type(t) == type( () ): - return t[:9] + return time.struct_time(t[:9]) else: return t