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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-12-30 08:00:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-12-30 08:00:19 +0300
commitbd97dd0846d6c22375965634d236fa39bc8d84fc (patch)
treecb5b190af99023b2bdc0e3b5cfce7f0ffd60e9f9 /source/blender
parent1c663bbc7e53cda1fe35579302574b0d98aa8db3 (diff)
mistake in previous commit, stopped CurNurbs from appending
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/api2_2x/CurNurb.c2
1 files changed, 1 insertions, 1 deletions
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 {