src/web/en/stats.shtml
changeset 754 86d553353fb0
parent 742 909b912fa942
child 817 45d075560318
--- a/src/web/en/stats.shtml	Tue Dec 02 16:38:37 2008 -0800
+++ b/src/web/en/stats.shtml	Wed Dec 03 16:59:19 2008 -0600
@@ -46,8 +46,13 @@
                         <tr>
                                 <td class="label">Last Modified</td>
 <%
-        # XXX Is this UTC or local?
-        lm = catalog.last_modified.replace(microsecond=0)
+        # Note: last_modified() is in local time relative to the timezone where
+        # catalog was last modified.
+        lm = catalog.last_modified
+        if lm:
+                lm = lm.replace(microsecond=0)
+        else:
+                lm = "Never"
 %>
                                 <td class="value">${lm}</td>
                         </tr>