From: davyd Date: Sat, 7 Feb 2004 17:04:07 +0000 (+0000) Subject: More time fixes X-Git-Url: https://git.ucc.asn.au/?p=planet-ucc.git;a=commitdiff_plain;h=73c1202987332c16b1ea6919aa635113bd3ce6cd More time fixes --- diff --git a/XMLWriter.py b/XMLWriter.py index 7d858ed..5b0582e 100644 --- a/XMLWriter.py +++ b/XMLWriter.py @@ -60,8 +60,8 @@ class Planet: if lastItem == None: break # this checks to see if it's a new day - if time.localtime(lastItem.itemDate)[6] != lastDate: - lastDate = time.localtime(lastItem.itemDate)[6] + if time.gmtime(lastItem.itemDate)[6] != lastDate: + lastDate = time.gmtime(lastItem.itemDate)[6] workingDate = PlanetDate(lastItem.itemDate) self.dates.append(workingDate) # append the item to the current date @@ -129,7 +129,7 @@ class XHTMLWriter: pass output += '

Last Updated

\n' output += '

\n' - output += '%s\n' % time.strftime('%A %B %d, %Y %H:%M', time.localtime()) + output += '%s\n' % time.strftime('%A %B %d, %Y %H:%M UTC', time.gmtime()) output += '

\n' if self.parent: output += '

Feeds

\n'