Changeset 92220 in webkit


Ignore:
Timestamp:
Aug 2, 2011 1:06:53 PM (13 years ago)
Author:
commit-queue@webkit.org
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 <Alexandru Chiculita> on 2011-08-02
Reviewed by Adam Roben.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r92191 r92220  
    141141    @staticmethod
    142142    def determineExtraFeatures(properties):
    143         if not properties.hasProperty("features"):
     143        if not properties.has_key("features"):
    144144            return ''
    145145        features = properties.getProperty("features")
  • trunk/Tools/ChangeLog

    r92219 r92220  
     12011-08-02  Alexandru Chiculita  <achicu@adobe.com>
     2
     3        Buildbot: The Properties object has no "hasProperty" method in buildbot 8.3
     4        https://bugs.webkit.org/show_bug.cgi?id=65554
     5
     6        Using "has_key" instead of "hasProperty" in order to support buildbot 8.3.
     7
     8        Reviewed by Adam Roben.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     11
    1122011-08-02  Jochen Eisinger  <jochen@chromium.org>
    213
Note: See TracChangeset for help on using the changeset viewer.