2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

ovs-bugtool.in: Comparison to None should be 'if cond is None:'

Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Acked-by: Ryan Moats <rmoats@us.ibm.com>
This commit is contained in:
Gurucharan Shetty
2016-06-05 23:12:36 -07:00
parent b7649c7316
commit 69be0a8d7b

View File

@@ -1279,7 +1279,7 @@ def run_procs(procs):
active_procs.append(p)
pipes.append(p.proc.stdout)
break
elif p.status == None and not p.failed and not p.timed_out:
elif p.status is None and not p.failed and not p.timed_out:
p.run()
if p.running:
active_procs.append(p)