[Bf-extensions-cvs] [353492b1] master: Fix incorrect identity comparisons in power_sequencer

Campbell Barton noreply at git.blender.org
Thu Mar 5 02:33:05 CET 2020


Commit: 353492b181e08663b8cd3bc5733920b6fcdbcbe4
Author: Campbell Barton
Date:   Thu Mar 5 12:17:51 2020 +1100
Branches: master
https://developer.blender.org/rBA353492b181e08663b8cd3bc5733920b6fcdbcbe4

Fix incorrect identity comparisons in power_sequencer

===================================================================

M	power_sequencer/scripts/BPSProxy/bpsproxy/commands.py
M	power_sequencer/scripts/BPSProxy/bpsproxy/utils.py
M	power_sequencer/scripts/BPSRender/bpsrender/helpers.py

===================================================================

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"]
         ]



More information about the Bf-extensions-cvs mailing list