[Bf-blender-cvs] [449ccb7b305] master: Fix typo: missing `f` string prefix in Alembic export test

Sybren A. Stüvel noreply at git.blender.org
Mon Aug 17 15:16:37 CEST 2020


Commit: 449ccb7b3050fd5d8fc87d7c6f2dd0caeea962c3
Author: Sybren A. Stüvel
Date:   Mon Aug 17 15:16:06 2020 +0200
Branches: master
https://developer.blender.org/rB449ccb7b3050fd5d8fc87d7c6f2dd0caeea962c3

Fix typo: missing `f` string prefix in Alembic export test

===================================================================

M	tests/python/alembic_export_tests.py

===================================================================

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)



More information about the Bf-blender-cvs mailing list