From 38752944f871d78feffc7a699ac475e5eef9e130 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 17 Aug 2020 13:57:55 +0200 Subject: Fix formatting bug in `AbstractAlembicTest` class Replace `formatstring, value` with the correct `formatstring % value`. No functional changes to any actual tests. --- tests/python/alembic_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/python') diff --git a/tests/python/alembic_tests.py b/tests/python/alembic_tests.py index 66545dc85c7..c911634ba12 100644 --- a/tests/python/alembic_tests.py +++ b/tests/python/alembic_tests.py @@ -105,7 +105,7 @@ class AbstractAlembicTest(AbstractBlenderRunnerTest): # To read those, call self.abcprop() on it. continue if len(parts) < 2: - raise ValueError('Error parsing result from abcprop: %s', info.strip()) + raise ValueError('Error parsing result from abcprop: %s' % info.strip()) valtype_and_arrsize, name_and_extent = parts[1:] # Parse name and extent -- cgit v1.2.3