Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@blender.org>2020-08-17 14:57:55 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-08-17 15:07:45 +0300
commit38752944f871d78feffc7a699ac475e5eef9e130 (patch)
tree76f322ff357e8973ea1859e258663b2f6d63e9eb /tests
parente14de692fc99b5e66d93c6240ec51410d087cf4d (diff)
Fix formatting bug in `AbstractAlembicTest` class
Replace `formatstring, value` with the correct `formatstring % value`. No functional changes to any actual tests.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/alembic_tests.py2
1 files changed, 1 insertions, 1 deletions
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