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:
Diffstat (limited to 'tests/python/alembic_export_tests.py')
-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)