Commit 750163d8 authored by Zhuoyu Qian's avatar Zhuoyu Qian Committed by Commit Bot

Replace "WebKit" with "Blink" in python style check code.

As the comment in main.py by tkent@, replace "WebKit" with "Blink".

Change-Id: I0277158f102a96be6d40381a7d8880f32b221f55
Reviewed-on: https://chromium-review.googlesource.com/c/1481184Reviewed-by: default avatarKent Tamura <tkent@chromium.org>
Commit-Queue: Zhuoyu Qian <zhuoyu.qian@samsung.com>
Cr-Commit-Position: refs/heads/master@{#634491}
parent 46a9c0d5
...@@ -100,8 +100,7 @@ def change_directory(filesystem, checkout_root, paths): ...@@ -100,8 +100,7 @@ def change_directory(filesystem, checkout_root, paths):
return paths return paths
# TODO(tkent): Replace "WebKit" with "Blink" in code. class CheckBlinkStyle(object):
class CheckWebKitStyle(object):
def _engage_awesome_stderr_hacks(self): def _engage_awesome_stderr_hacks(self):
# Change stderr to write with replacement characters so we don't die # Change stderr to write with replacement characters so we don't die
......
...@@ -40,8 +40,8 @@ find is legitimately a problem.""" ...@@ -40,8 +40,8 @@ find is legitimately a problem."""
import sys import sys
from blinkpy.common import version_check # pylint: disable=unused-import from blinkpy.common import version_check # pylint: disable=unused-import
from blinkpy.style.main import CheckWebKitStyle from blinkpy.style.main import CheckBlinkStyle
if __name__ == "__main__": if __name__ == "__main__":
sys.exit(CheckWebKitStyle().main()) sys.exit(CheckBlinkStyle().main())
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment