Changeset 238956 in webkit


Ignore:
Timestamp:
Dec 7, 2018 10:48:55 AM (5 years ago)
Author:
aakash_jain@apple.com
Message:

Style queue exception on some security bugs
https://bugs.webkit.org/show_bug.cgi?id=190793

Reviewed by Lucas Forschler.

  • Scripts/webkitpy/tool/steps/applywatchlist.py:

(ApplyWatchList.run):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r238954 r238956  
     12018-12-07  Aakash Jain  <aakash_jain@apple.com>
     2
     3        Style queue exception on some security bugs
     4        https://bugs.webkit.org/show_bug.cgi?id=190793
     5
     6        Reviewed by Lucas Forschler.
     7
     8        * Scripts/webkitpy/tool/steps/applywatchlist.py:
     9        (ApplyWatchList.run):
     10
    1112018-12-07  Wenson Hsieh  <wenson_hsieh@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/tool/steps/applywatchlist.py

    r98753 r238956  
    5252            # Remove emails and cc's which are already in the bug or the reporter.
    5353            bug = self._tool.bugs.fetch_bug(bug_id)
     54            if not bug:
     55                _log.info('Unable to fetch bug {}. Skipped applying watchlist.'.format(bug_id))
     56                return
    5457
    5558            messages = filter(lambda message: not bug.is_in_comments(message), messages)
Note: See TracChangeset for help on using the changeset viewer.