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

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

Issue 2580293002: Style change: Rename error variables "e" -> "error" (Closed)
Patch Set: Rebase and fix formatter unittest. Created 4 years 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 2a29af4eec01abbdc1adffe35faad3953aa78651..a130a7d0657050c920e3cd88ec1089031150a3c6 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
@@ -124,8 +124,8 @@ class DumpReaderWin(DumpReader):
'%s\\Debuggers\\x86' % win_sdk,
'%s\\Debuggers\\x64' % win_sdk,
])
- except OSError as e:
- if e.errno != errno.ENOENT:
+ except OSError as error:
+ if error.errno != errno.ENOENT:
raise
for cdb_path in possible_cdb_locations:

Powered by Google App Engine
This is Rietveld 408576698