From bd697dd4d7e3b753aa18a1767e20c80d52f65aa4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 30 Jan 2014 16:45:20 +1100 Subject: Fix T38402: invalid message for bad type assignments (Quat, Vector) --- source/blender/python/mathutils/mathutils_Euler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/mathutils/mathutils_Euler.c') diff --git a/source/blender/python/mathutils/mathutils_Euler.c b/source/blender/python/mathutils/mathutils_Euler.c index 2a874f51fd4..5d8252d3c72 100644 --- a/source/blender/python/mathutils/mathutils_Euler.c +++ b/source/blender/python/mathutils/mathutils_Euler.c @@ -411,7 +411,7 @@ static int Euler_ass_item(EulerObject *self, int i, PyObject *value) if (f == -1 && PyErr_Occurred()) { /* parsed item not a number */ PyErr_SetString(PyExc_TypeError, "euler[attribute] = x: " - "argument not a number"); + "assigned value not a number"); return -1; } -- cgit v1.2.3