Fix typo: missing f
string prefix in Alembic export test
This commit is contained in:
@@ -116,7 +116,7 @@ class AbstractAlembicTest(AbstractBlenderRunnerTest):
|
|||||||
try:
|
try:
|
||||||
valtype_and_arrsize, name_and_extent = parts[1:]
|
valtype_and_arrsize, name_and_extent = parts[1:]
|
||||||
except ValueError as ex:
|
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
|
# Parse name and extent
|
||||||
m = self.abcls_array.match(name_and_extent)
|
m = self.abcls_array.match(name_and_extent)
|
||||||
|
Reference in New Issue
Block a user