[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 13:58:44 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ad69b129d095acec1c167423ed7eb53cb34a458d
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 30 21:17:33 2010 +0000

    2010-09-30  Adam Barth  <abarth at webkit.org>
    
            Unreviewed.  Second attempt to fix sheriffbot.
    
            * Scripts/webkitpy/common/net/buildbot.py:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68823 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 38ef6f2..59e2e8c 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,11 @@
 2010-09-30  Adam Barth  <abarth at webkit.org>
 
+        Unreviewed.  Second attempt to fix sheriffbot.
+
+        * Scripts/webkitpy/common/net/buildbot.py:
+
+2010-09-30  Adam Barth  <abarth at webkit.org>
+
         Unreviewed.
 
         This patch should stop the sheriffbot from throwing an exception.
diff --git a/WebKitTools/Scripts/webkitpy/common/net/buildbot.py b/WebKitTools/Scripts/webkitpy/common/net/buildbot.py
index 92ac79f..f9ef675 100644
--- a/WebKitTools/Scripts/webkitpy/common/net/buildbot.py
+++ b/WebKitTools/Scripts/webkitpy/common/net/buildbot.py
@@ -462,7 +462,8 @@ class BuildBot(object):
                 continue
             builder = self.builder_with_name(builder_status["name"])
             regression_window = builder.find_blameworthy_regression_window(builder_status["build_number"])
-            failure_map.add_regression_window(builder, regression_window)
+            if regression_window:
+                failure_map.add_regression_window(builder, regression_window)
         return failure_map
 
     # This makes fewer requests than calling Builder.latest_build would.  It grabs all builder

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list