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/source
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-01-11 10:04:11 +0300
committerCampbell Barton <campbell@blender.org>2022-01-11 10:16:00 +0300
commit9af81c2b74475d8b6d0b6d8b0ca4afbb7ec380fa (patch)
tree59d79e8c686586896604c53cee46bad73e78802a /source
parentc77f837598b2653d9cb2acd3f9c496e001c9a03e (diff)
Cleanup: correct exception message
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/mathutils/mathutils_Quaternion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_Quaternion.c b/source/blender/python/mathutils/mathutils_Quaternion.c
index 525b2da7d06..8c333413d74 100644
--- a/source/blender/python/mathutils/mathutils_Quaternion.c
+++ b/source/blender/python/mathutils/mathutils_Quaternion.c
@@ -320,7 +320,7 @@ static PyObject *Quaternion_rotation_difference(QuaternionObject *self, PyObject
QUAT_SIZE,
QUAT_SIZE,
value,
- "Quaternion.difference(other), invalid 'other' arg") == -1) {
+ "Quaternion.rotation_difference(other), invalid 'other' arg") == -1) {
return NULL;
}