From 2b4535c8a24bd16e288e3947226a4c6c653115ee Mon Sep 17 00:00:00 2001 From: Min Pae Date: Sun, 12 Jul 2015 17:48:58 -0700 Subject: [PATCH] fixing syntax error on return line Change-Id: Ia28ecf3887374ba4a1c82ca2aa555537991962a6 --- worker/start_workers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/start_workers.py b/worker/start_workers.py index 4f0adf6..e4e1f57 100644 --- a/worker/start_workers.py +++ b/worker/start_workers.py @@ -48,7 +48,7 @@ def is_alive(proc_info): process = proc_info['process'] if not proc_info['pid'] or process is None: return False - return process.is_alive(): + return process.is_alive() def needs_restart(proc_info):