More time fixes
authordavyd <davyd>
Sat, 7 Feb 2004 17:04:07 +0000 (17:04 +0000)
committerdavyd <davyd>
Sat, 7 Feb 2004 17:04:07 +0000 (17:04 +0000)
XMLWriter.py

index 7d858ed..5b0582e 100644 (file)
@@ -60,8 +60,8 @@ class Planet:
                                if lastItem == None:
                                        break
                                # this checks to see if it's a new day
                                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
                                        workingDate     = PlanetDate(lastItem.itemDate)
                                        self.dates.append(workingDate)
                                # append the item to the current date
@@ -129,7 +129,7 @@ class XHTMLWriter:
                        pass
                output  +=      '<h2>Last Updated</h2>\n'
                output  +=      '<p>\n'
                        pass
                output  +=      '<h2>Last Updated</h2>\n'
                output  +=      '<p>\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  +=      '</p>\n'
                if self.parent:
                        output  +=      '<h2>Feeds</h2>\n'
                output  +=      '</p>\n'
                if self.parent:
                        output  +=      '<h2>Feeds</h2>\n'

UCC git Repository :: git.ucc.asn.au