Revision: 19451
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19451
Author:   kjym3
Date:     2009-03-29 20:46:17 +0200 (Sun, 29 Mar 2009)

Log Message:
-----------
Fixed a typo in the last commit.

Modified Paths:
--------------
    
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/python/BPy_SShape.cpp

Modified: 
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/python/BPy_SShape.cpp
===================================================================
--- 
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/python/BPy_SShape.cpp
   2009-03-29 18:44:49 UTC (rev 19450)
+++ 
branches/soc-2008-mxcurioni/source/blender/freestyle/intern/python/BPy_SShape.cpp
   2009-03-29 18:46:17 UTC (rev 19451)
@@ -184,7 +184,7 @@
 PyObject * SShape_AddNewVertex( BPy_SShape *self , PyObject *args) {
        PyObject *py_sv = 0;
 
-       if(!( PyArg_ParseTuple(args, "O1", &SVertex_Type, &py_sv) ))
+       if(!( PyArg_ParseTuple(args, "O!", &SVertex_Type, &py_sv) ))
                return NULL;
        
        self->ss->AddNewVertex( ((BPy_SVertex *) py_sv)->sv );


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to