Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'power_sequencer/scripts/BPSProxy/bpsproxy/utils.py')
-rw-r--r--power_sequencer/scripts/BPSProxy/bpsproxy/utils.py2
1 files changed, 1 insertions, 1 deletions
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"]
]