Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py |
index 856de0169cb979b709d793740c350305c2e030c7..a8100ece63636df727176995266f4f0335f5ceba 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/executive.py |
@@ -244,7 +244,7 @@ class Executive(object): |
pid = line[1] |
if process_name_filter(process_name): |
running_pids.append(int(pid)) |
- except (ValueError, IndexError) as e: |
+ except (ValueError, IndexError): |
pass |
return sorted(running_pids) |