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

This commit is contained in:
Sybren A. Stüvel 2020-08-17 15:16:06 +02:00
parent 6b6de5beba
commit 449ccb7b30
1 changed files with 1 additions and 1 deletions

View File

@ -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)