Changeset 56589 in webkit


Ignore:
Timestamp:
Mar 25, 2010 7:21:07 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-25 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

REGRESSION: webkit-patch land can't land "rubber-stamped" patches
https://bugs.webkit.org/show_bug.cgi?id=36582

Allow a "-" in rubber stamped.

  • Scripts/webkitpy/tool/steps/validatereviewer.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56586 r56589  
     12010-03-25  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        REGRESSION: webkit-patch land can't land "rubber-stamped" patches
     6        https://bugs.webkit.org/show_bug.cgi?id=36582
     7
     8        Allow a "-" in rubber stamped.
     9
     10        * Scripts/webkitpy/tool/steps/validatereviewer.py:
     11
    1122010-03-25  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/tool/steps/validatereviewer.py

    r56554 r56589  
    4646            if re.search("unreviewed", changelog_entry.contents(), re.IGNORECASE):
    4747                continue
    48             if re.search("rubber stamp", changelog_entry.contents(), re.IGNORECASE):
     48            if re.search("rubber[ -]stamp", changelog_entry.contents(), re.IGNORECASE):
    4949                continue
    5050            reviewer_text = changelog_entry.reviewer_text()
Note: See TracChangeset for help on using the changeset viewer.