[Zope-Checkins] CVS: Zope2 - DateTime.py:1.61

Brian Lloyd brian@digiciool.com
Mon, 12 Mar 2001 09:51:15 -0500 (EST)


Update of /cvs-repository/Zope2/lib/python/DateTime
In directory korak:/home/brian/temp/mainline_test/lib/python/DateTime

Modified Files:
	DateTime.py 
Log Message:
Merged fix for bug 2040



--- Updated File DateTime.py in package Zope2 --
--- DateTime.py	2001/02/12 19:05:26	1.60
+++ DateTime.py	2001/03/12 14:51:14	1.61
@@ -1392,7 +1392,7 @@
         format = ts_regex.gsub('\(^\|[^%]\)%z',
                                '\\1%+05d' % (diff / 36),
                                format)
-        return strftime(format, gmtime(self.timeTime() + diff))
+        return strftime(format, safegmtime(self.timeTime() + diff))
 
     # General formats from previous DateTime
     def Date(self):