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>2009-04-23 09:56:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-23 09:56:09 +0400
commitd00c3ef2d6339aa01ddbc56bacd20f1ef4473a27 (patch)
tree204d1d094d4618298d0db89ca75242f32095cadc /source/blender/python
parent7ee587c04a040893c86399b6df7b74b22a737206 (diff)
Small changes
- font->blur was uninitialized - Use Ctrl+Alt+Shift+P to run scripts from the 3d view not Pkey. (still useful for testing)
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 0b05b11deff..3df0a349a6a 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -1989,7 +1989,7 @@ PyObject *pyrna_basetype_unregister(PyObject *self, PyObject *args)
BPy_StructRNA *py_srna;
StructUnregisterFunc unreg;
- if(!PyArg_ParseTuple(args, "O:register", &py_class))
+ if(!PyArg_ParseTuple(args, "O:unregister", &py_class))
return NULL;
if(!PyType_Check(py_class)) {