Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1313)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py

Issue 1783073002: Run auto-formatter on files in webkitpy/layout_tests/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ran yapf -i --style '{based_on_style: pep8, column_limit: 132}' then did manual fix-up Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
index 850db909797ca967383dfd990aafa62b7988a7e2..b62643d4f559822097b6a46d14ccb6f714639950 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
@@ -32,7 +32,6 @@ import shlex
from webkitpy.layout_tests.breakpad.dump_reader import DumpReader
-
_log = logging.getLogger(__name__)
@@ -116,10 +115,7 @@ class DumpReaderWin(DumpReader):
depot_tools = self._find_depot_tools_path()
if depot_tools:
win_sdk = os.path.join(depot_tools, 'win_toolchain', 'vs2013_files', 'win_sdk')
- possible_cdb_locations.extend([
- '%s\\Debuggers\\x86' % win_sdk,
- '%s\\Debuggers\\x64' % win_sdk,
- ])
+ possible_cdb_locations.extend(['%s\\Debuggers\\x86' % win_sdk, '%s\\Debuggers\\x64' % win_sdk, ])
for cdb_path in possible_cdb_locations:
cdb = self._host.filesystem.join(cdb_path, 'cdb.exe')

Powered by Google App Engine
This is Rietveld 408576698