Changeset 270030 in webkit


Ignore:
Timestamp:
Nov 19, 2020 8:02:10 AM (3 years ago)
Author:
ap@apple.com
Message:

Make block-spammers autoinstall requests
https://bugs.webkit.org/show_bug.cgi?id=219137

Reviewed by Jonathan Bedard.

  • Scripts/block-spammers: Move the webkitpy import first, making autoinstaller

is available for subsequent imports.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r270006 r270030  
     12020-11-19  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Make block-spammers autoinstall requests
     4        https://bugs.webkit.org/show_bug.cgi?id=219137
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * Scripts/block-spammers: Move the webkitpy import first, making autoinstaller
     9        is available for subsequent imports.
     10
    1112020-11-18  Wenson Hsieh  <wenson_hsieh@apple.com>
    212
  • trunk/Tools/Scripts/block-spammers

    r266997 r270030  
    2727# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2828
     29# A webkitpy import needs to go first for autoinstaller to work with subsequent imports.
     30from webkitpy.common.net.credentials import Credentials
     31
    2932import argparse
    3033import atexit
     
    3336import os
    3437from dateutil.parser import parse
    35 from webkitpy.common.net.credentials import Credentials
    3638
    3739_log = logging.getLogger(os.path.basename(__file__))
Note: See TracChangeset for help on using the changeset viewer.