Skip to content

Commit abb8b25

Browse files
committed
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. Canonical link: https://commits.webkit.org/231771@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@270030 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent f6b81e3 commit abb8b25

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

Tools/ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2020-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+
111
2020-11-18 Wenson Hsieh <wenson_hsieh@apple.com>
212

313
Rename MetaCommandSwitchTo to MetaCommandSwitchToItemBuffer

Tools/Scripts/block-spammers

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,15 @@
2626
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
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.
30+
from webkitpy.common.net.credentials import Credentials
31+
2932
import argparse
3033
import atexit
3134
import logging
3235
import requests
3336
import os
3437
from dateutil.parser import parse
35-
from webkitpy.common.net.credentials import Credentials
3638

3739
_log = logging.getLogger(os.path.basename(__file__))
3840
logging.basicConfig(level=logging.INFO, format='%(message)s')

0 commit comments

Comments
 (0)