[Zope] Further info about ZopeTime() not returning correct values

Darrell dgallion@rochester.rr.com
Thu, 13 Jan 2000 20:33:51 -0500


From: "Guy Davis" 
> As far as I can tell as soon as I specify a fmt="" string,
> ZopeTime automagically starts returning GMT. 
> 
Yelp, I found the code that does it. Wonder why gmtime is assumed ?

From DateTime.py 
    def strftime(self, format):
        return strftime(format, gmtime(self.timeTime()))

--Darrell