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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-03-29 22:46:17 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-03-29 22:46:17 +0400
commit6dfcbf166b6892d52c14c0902a3d212ffed0b7f6 (patch)
treeeb3a54f5392dc8ed7d1988c234e45a0e53009aa7 /source/blender/freestyle/intern/python/BPy_SShape.cpp
parent68e088f1cf3e3b8daa4a5d17acb6f0525ca6de95 (diff)
Fixed a typo in the last commit.
Diffstat (limited to 'source/blender/freestyle/intern/python/BPy_SShape.cpp')
-rw-r--r--source/blender/freestyle/intern/python/BPy_SShape.cpp2
1 files changed, 1 insertions, 1 deletions
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 );