From 6af121b4077fc60815aa6ddcbf438bcad0925c19 Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Mon, 6 Aug 2007 14:27:08 +0000 Subject: [PATCH] Fix minor typo in error messages for Mathutils.DotVecs(), reported on python ML. --- source/blender/python/api2_2x/Mathutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/python/api2_2x/Mathutils.c b/source/blender/python/api2_2x/Mathutils.c index bac9d6038ca..3605c956a58 100644 --- a/source/blender/python/api2_2x/Mathutils.c +++ b/source/blender/python/api2_2x/Mathutils.c @@ -460,10 +460,10 @@ PyObject *M_Mathutils_DotVecs(PyObject * self, PyObject * args) if(!PyArg_ParseTuple(args, "O!O!", &vector_Type, &vec1, &vector_Type, &vec2)) return EXPP_ReturnPyObjError(PyExc_TypeError, - "Mathutils.DotVec(): expects (2) vector objects of the same size\n"); + "Mathutils.DotVecs(): expects (2) vector objects of the same size\n"); if(vec1->size != vec2->size) return EXPP_ReturnPyObjError(PyExc_AttributeError, - "Mathutils.DotVec(): expects (2) vector objects of the same size\n"); + "Mathutils.DotVecs(): expects (2) vector objects of the same size\n"); for(x = 0; x < vec1->size; x++) { dot += vec1->vec[x] * vec2->vec[x];