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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-24 06:33:14 +0300
committerCampbell Barton <campbell@blender.org>2022-04-24 06:41:03 +0300
commitbba757ef81abd93a2ec33dbf6858fa4bf398c7d6 (patch)
treea16743bc916b1350eaece93a52d3cbf4609bb512 /tests
parenta6504aa64bb0e33d112cd21b9d98db77530f14a4 (diff)
Cleanup: various minor changes
- Add missing doxy-section for Apply Parent Inverse Operator - Use identity for None comparison in Python. - Remove newline from operator doc-strings. - Use '*' prefix multi-line C comment blocks. - Separate filenames from doc-strings. - Remove break after return.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/performance/benchmark2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance/benchmark b/tests/performance/benchmark
index 4ca46a111e1..28e8cda5098 100755
--- a/tests/performance/benchmark
+++ b/tests/performance/benchmark
@@ -333,7 +333,7 @@ def main():
argv = sys.argv[2:]
blender_git_dir = find_blender_git_dir()
- if blender_git_dir == None:
+ if blender_git_dir is None:
sys.stderr.write('Error: no blender git repository found from current working directory\n')
sys.exit(1)