aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skp
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2014-10-17 14:17:18 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-17 14:17:18 -0700
commit25956ce43032afdfcc996af8c7661c076f9a1d74 (patch)
tree116b1e8233a9b8a4bd64e3b678536e5caab8e7a3 /tools/skp
parent783991585be67da3286680d850a99c5410885965 (diff)
Fix RecreateSKPs bot (again)
It's killing its own process... BUG=skia:3008 TBR=rmistry NOTRY=true Review URL: https://codereview.chromium.org/661203002
Diffstat (limited to 'tools/skp')
-rw-r--r--tools/skp/recreate_skps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/skp/recreate_skps.py b/tools/skp/recreate_skps.py
index 78863183cb..bbec14a6a6 100644
--- a/tools/skp/recreate_skps.py
+++ b/tools/skp/recreate_skps.py
@@ -72,7 +72,7 @@ def main(chrome_src_path, browser_executable):
for line in procs.splitlines():
if browser_executable in line:
pid = line.strip().split(' ')[0]
- if pid != str(os.getpid()):
+ if pid != str(os.getpid()) and not 'python' in line:
try:
shell_utils.run(['kill', '-9', pid])
except shell_utils.CommandFailedException as e: