Skip to content

Commit

Permalink
ovs-bugtool.in: Comparison to None should be 'if cond is None:'
Browse files Browse the repository at this point in the history
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Acked-by: Ryan Moats <rmoats@us.ibm.com>
  • Loading branch information
shettyg committed Jun 9, 2016
1 parent b7649c7 commit 69be0a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/bugtool/ovs-bugtool.in
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 69be0a8

Please sign in to comment.