From 73c1202987332c16b1ea6919aa635113bd3ce6cd Mon Sep 17 00:00:00 2001 From: davyd Date: Sat, 7 Feb 2004 17:04:07 +0000 Subject: [PATCH] More time fixes --- XMLWriter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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' -- 2.20.1