The branch, master has been updated
via 77951af Fix access to buildfarm variable.
from 1f98541 Add CGI_DEBUG variable.
http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 77951af92f278155ab01666b8f855fa5c59c66df
Author: Jelmer Vernooij <[email protected]>
Date: Tue Nov 16 22:50:16 2010 +0100
Fix access to buildfarm variable.
-----------------------------------------------------------------------
Summary of changes:
buildfarm/web/__init__.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/buildfarm/web/__init__.py b/buildfarm/web/__init__.py
index e0af291..6bf88fe 100755
--- a/buildfarm/web/__init__.py
+++ b/buildfarm/web/__init__.py
@@ -809,7 +809,7 @@ class ViewSummaryPage(BuildFarmPage):
for compiler in self.buildfarm.compilers:
for tree in self.buildfarm.trees:
try:
- build = buildfarm.get_build(tree,
host.name.encode("utf-8"), compiler)
+ build = self.buildfarm.get_build(tree, host.name,
compiler)
status = build_status_html(myself, build)
except data.NoSuchBuildError:
continue
--
build.samba.org