Changeset 51203 in webkit


Ignore:
Timestamp:
Nov 19, 2009 1:02:30 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Darin Adler.

commit-queue empty queue logs twice
https://bugs.webkit.org/show_bug.cgi?id=31679

  • Scripts/bugzilla-tool:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51202 r51203  
     12009-11-19  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        commit-queue empty queue logs twice
     6        https://bugs.webkit.org/show_bug.cgi?id=31679
     7
     8        * Scripts/bugzilla-tool:
     9
    1102009-11-19  Eric Seidel  <eric@webkit.org>
    211
  • trunk/WebKitTools/Scripts/bugzilla-tool

    r51192 r51203  
    789789    def next_work_item(self):
    790790        patches = self.tool.bugs.fetch_patches_from_commit_queue(reject_invalid_patches=True)
     791        if not patches:
     792            return None
     793        # Only bother logging if we have patches in the queue.
    791794        self.log_progress([patch['id'] for patch in patches])
    792         return patches[0] if patches else None
     795        return patches[0]
    793796
    794797    def should_proceed_with_work_item(self, patch):
Note: See TracChangeset for help on using the changeset viewer.