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
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-07-22 19:36:45 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-07-26 19:04:40 +0300
commit22b03e1c689561298c46704ca1a99a686ed8e0b5 (patch)
treee5661de57d84425c7a62a01bc8a815d240165d0f /tests/performance/api
parentabf3ce811f6e33213a51941b477668750d45c5b4 (diff)
Fix Python error in benchmark executable detection after recent changes
Diffstat (limited to 'tests/performance/api')
-rw-r--r--tests/performance/api/environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance/api/environment.py b/tests/performance/api/environment.py
index 3a9b3eaf936..70fc15f251c 100644
--- a/tests/performance/api/environment.py
+++ b/tests/performance/api/environment.py
@@ -122,7 +122,7 @@ class TestEnvironment:
executable = executable / self._blender_executable_name()
elif not executable.is_file() and executable.name == 'blender':
# Executable path without proper path on Windows or macOS.
- executable = executable.parent() / self._blender_executable_name()
+ executable = executable.parent / self._blender_executable_name()
if executable.is_file():
return executable