Title: [92220] trunk/Tools
Revision
92220
Author
commit-qu...@webkit.org
Date
2011-08-02 13:06:53 -0700 (Tue, 02 Aug 2011)

Log Message

Buildbot: The Properties object has no "hasProperty" method in buildbot 8.3
https://bugs.webkit.org/show_bug.cgi?id=65554

Using "has_key" instead of "hasProperty" in order to support buildbot 8.3.

Patch by Alexandru Chiculita <ach...@adobe.com> on 2011-08-02
Reviewed by Adam Roben.

* BuildSlaveSupport/build.webkit.org-config/master.cfg:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (92219 => 92220)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2011-08-02 20:00:46 UTC (rev 92219)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2011-08-02 20:06:53 UTC (rev 92220)
@@ -140,7 +140,7 @@
 
     @staticmethod
     def determineExtraFeatures(properties):
-        if not properties.hasProperty("features"):
+        if not properties.has_key("features"):
             return ''
         features = properties.getProperty("features")
         if not len(features):

Modified: trunk/Tools/ChangeLog (92219 => 92220)


--- trunk/Tools/ChangeLog	2011-08-02 20:00:46 UTC (rev 92219)
+++ trunk/Tools/ChangeLog	2011-08-02 20:06:53 UTC (rev 92220)
@@ -1,3 +1,14 @@
+2011-08-02  Alexandru Chiculita  <ach...@adobe.com>
+
+        Buildbot: The Properties object has no "hasProperty" method in buildbot 8.3
+        https://bugs.webkit.org/show_bug.cgi?id=65554
+
+        Using "has_key" instead of "hasProperty" in order to support buildbot 8.3.
+
+        Reviewed by Adam Roben.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+
 2011-08-02  Jochen Eisinger  <joc...@chromium.org>
 
         Implement WebPermissionClient::allowPlugins for layout tests
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to