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:
authorSybren A. Stüvel <sybren@blender.org>2020-08-17 16:16:06 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-08-17 16:16:20 +0300
commit449ccb7b3050fd5d8fc87d7c6f2dd0caeea962c3 (patch)
treee001079e4fbd3cd019cb43e6fcd7cfc24cdc9dae /tests
parent6b6de5bebae27a6f86b46add13a5bd77d82ec091 (diff)
Fix typo: missing `f` string prefix in Alembic export test
Diffstat (limited to 'tests')
-rw-r--r--tests/python/alembic_export_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/alembic_export_tests.py b/tests/python/alembic_export_tests.py
index f79b36d60af..800e450776c 100644
--- a/tests/python/alembic_export_tests.py
+++ b/tests/python/alembic_export_tests.py
@@ -116,7 +116,7 @@ class AbstractAlembicTest(AbstractBlenderRunnerTest):
try:
valtype_and_arrsize, name_and_extent = parts[1:]
except ValueError as ex:
- raise ValueError('Error parsing result from abcprop "{info.strip()}": {ex}') from ex
+ raise ValueError(f'Error parsing result from abcprop "{info.strip()}": {ex}') from ex
# Parse name and extent
m = self.abcls_array.match(name_and_extent)