From 6dfcbf166b6892d52c14c0902a3d212ffed0b7f6 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Sun, 29 Mar 2009 18:46:17 +0000 Subject: Fixed a typo in the last commit. --- source/blender/freestyle/intern/python/BPy_SShape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/freestyle/intern/python/BPy_SShape.cpp') diff --git a/source/blender/freestyle/intern/python/BPy_SShape.cpp b/source/blender/freestyle/intern/python/BPy_SShape.cpp index 1ba6c6a7f48..48faf65a569 100644 --- a/source/blender/freestyle/intern/python/BPy_SShape.cpp +++ b/source/blender/freestyle/intern/python/BPy_SShape.cpp @@ -184,7 +184,7 @@ PyObject * SShape_AddEdge( BPy_SShape *self , PyObject *args) { 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 ); -- cgit v1.2.3