From 449ccb7b3050fd5d8fc87d7c6f2dd0caeea962c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 17 Aug 2020 15:16:06 +0200 Subject: [PATCH] Fix typo: missing `f` string prefix in Alembic export test --- tests/python/alembic_export_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)