Changeset 51022 in webkit


Ignore:
Timestamp:
Nov 16, 2009 3:00:24 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-16 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

land-patches needs to be re-factored into smaller chunks
https://bugs.webkit.org/show_bug.cgi?id=31532

  • Scripts/bugzilla-tool: fix a couple obvious typos.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51021 r51022  
     12009-11-16  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        land-patches needs to be re-factored into smaller chunks
     6        https://bugs.webkit.org/show_bug.cgi?id=31532
     7
     8        * Scripts/bugzilla-tool: fix a couple obvious typos.
     9
    1102009-11-16  Eric Seidel  <eric@webkit.org>
    211
  • trunk/WebKitTools/Scripts/bugzilla-tool

    r51021 r51022  
    383383
    384384    @classmethod
    385     def _close_bug_if_no_active_patches(cls, patch, option, tool):
     385    def _close_bug_if_no_active_patches(cls, bugs, bug_id):
    386386        # This should check to make sure there are no r? or r+ patches on the bug before closing.
    387387        # https://bugs.webkit.org/show_bug.cgi?id=28230
    388         tool.bugs.close_bug_as_fixed(bug_id, "All reviewed patches have been landed.  Closing bug.")
     388        bugs.close_bug_as_fixed(bug_id, "All reviewed patches have been landed.  Closing bug.")
    389389
    390390    @classmethod
     
    406406                cls._land_patch(patch, options, tool)
    407407            if options.close_bug and patches:
    408                 cls._close_bug_if_no_active_patches(patches[0]['bug_id'])
     408                cls._close_bug_if_no_active_patches(tool.bugs, patches[0]['bug_id'])
    409409        except CheckoutNeedsUpdate, e:
    410410            log("Commit failed because the checkout is out of date.  Please update and try again.")
Note: See TracChangeset for help on using the changeset viewer.