From bd97dd0846d6c22375965634d236fa39bc8d84fc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Dec 2008 05:00:19 +0000 Subject: [PATCH] mistake in previous commit, stopped CurNurbs from appending --- source/blender/python/api2_2x/CurNurb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/api2_2x/CurNurb.c b/source/blender/python/api2_2x/CurNurb.c index bd360585b19..456f11e4a54 100644 --- a/source/blender/python/api2_2x/CurNurb.c +++ b/source/blender/python/api2_2x/CurNurb.c @@ -521,7 +521,7 @@ PyObject *CurNurb_appendPointToNurb( Nurb * nurb, PyObject * value ) PyObject *args; BPoint *tmp; - if (PyTuple_Check(args)) { + if (PyTuple_Check(value)) { args= value; } else {