The branch, master has been updated via 4d47399 Print sane time string rather than python tuple. from 036dd45 Fix use with multiple builds with the same checksum.
http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 4d473991a527bfa2ae497435707c1b698c893500 Author: Jelmer Vernooij <jel...@samba.org> Date: Mon Nov 22 10:23:27 2010 +0100 Print sane time string rather than python tuple. ----------------------------------------------------------------------- Summary of changes: buildfarm/web/__init__.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) Changeset truncated at 500 lines: diff --git a/buildfarm/web/__init__.py b/buildfarm/web/__init__.py index 08aeafe..e735941 100755 --- a/buildfarm/web/__init__.py +++ b/buildfarm/web/__init__.py @@ -699,8 +699,7 @@ class ViewSummaryPage(BuildFarmPage): (host_count, broken_count, panic_count) = self._get_counts() # for the text report, include the current time - t = time.gmtime() - yield "Build status as of %s\n\n" % t + yield "Build status as of %s\n\n" % time.asctime() yield "Build counts:\n" yield "%-12s %-6s %-6s %-6s\n" % ("Tree", "Total", "Broken", "Panic") -- build.samba.org