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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user