[SCM] build.samba.org - branch master updated

Matthieu Patou mat at samba.org
Thu Nov 11 12:50:12 MST 2010


The branch, master has been updated
       via  d67fc5a Use the correct form for cmp
      from  c7004ea attribute readonly didn't exists (anymore ?)

http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit d67fc5a7b8da0e696c334f58000bbfe074624a0c
Author: Matthieu Patou <mat at matws.net>
Date:   Thu Nov 11 22:50:53 2010 +0300

    Use the correct form for cmp

-----------------------------------------------------------------------

Summary of changes:
 web/build.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/web/build.py b/web/build.py
index 977f16e..b28eb85 100755
--- a/web/build.py
+++ b/web/build.py
@@ -264,7 +264,7 @@ def view_recent_builds(myself, tree, sort_by):
         "host": lambda a, b: cmp(a[2], b[2]),
         "platform": lambda a, b: cmp(a[1], b[1]),
         "compiler": lambda a, b: cmp(a[3], b[3]),
-        "status": lambda a, b: a[6].cmp(b[6]),
+        "status": lambda a, b: cmp(a[6], b[6]),
         }
 
     assert tree in trees, "not a build tree"


-- 
build.samba.org


More information about the samba-cvs mailing list