From 353492b181e08663b8cd3bc5733920b6fcdbcbe4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Mar 2020 12:17:51 +1100 Subject: Fix incorrect identity comparisons in power_sequencer --- power_sequencer/scripts/BPSProxy/bpsproxy/commands.py | 2 +- power_sequencer/scripts/BPSProxy/bpsproxy/utils.py | 2 +- power_sequencer/scripts/BPSRender/bpsrender/helpers.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/power_sequencer/scripts/BPSProxy/bpsproxy/commands.py b/power_sequencer/scripts/BPSProxy/bpsproxy/commands.py index 72c81ccf..fd41619d 100644 --- a/power_sequencer/scripts/BPSProxy/bpsproxy/commands.py +++ b/power_sequencer/scripts/BPSProxy/bpsproxy/commands.py @@ -186,5 +186,5 @@ def get_commands_vi(cfg, clargs, **kwargs): An iterator with the 1st element as a tag (the `what` parameter) and the 2nd element as the iterator of the actual commands. """ - ws = filter(lambda x: x is not "all", cfg["extensions"]) + ws = filter(lambda x: x != "all", cfg["extensions"]) return chain.from_iterable(map(lambda w: get_commands(cfg, clargs, what=w, **kwargs), ws)) diff --git a/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py b/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py index 832a0beb..2f5b7c5e 100644 --- a/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py +++ b/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py @@ -36,7 +36,7 @@ def checktools(tools): msg = ["BPSProxy couldn't find external dependencies:"] msg += [ "[{check}] {tool}: {path}".format( - check="v" if path is not "" else "X", tool=tool, path=path or "NOT FOUND" + check="v" if path != "" else "X", tool=tool, path=path or "NOT FOUND" ) for tool, path in check["tools"] ] diff --git a/power_sequencer/scripts/BPSRender/bpsrender/helpers.py b/power_sequencer/scripts/BPSRender/bpsrender/helpers.py index 9ebcf2b0..58f79775 100644 --- a/power_sequencer/scripts/BPSRender/bpsrender/helpers.py +++ b/power_sequencer/scripts/BPSRender/bpsrender/helpers.py @@ -41,7 +41,7 @@ def checktools(tools): msg = ["BPSRender couldn't find external dependencies:"] msg += [ "[{check}] {tool}: {path}".format( - check="v" if path is not "" else "X", tool=tool, path=path or "NOT FOUND" + check="v" if path != "" else "X", tool=tool, path=path or "NOT FOUND" ) for tool, path in check["tools"] ] -- cgit v1.2.3