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>2006-04-20 18:26:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-04-20 18:26:24 +0400
commit1632a2f888f90eef32d32d51c76a4013efe588b3 (patch)
tree7cb81a36156ff638151e85a54cb0403ed915730a /source/blender/python/api2_2x/Group.c
parent19345ba9ace4494f9aa5d4db69d40f56cbcd6f85 (diff)
Added Group to Blender.Types, tested and working.
Added Group Epydocs, with 2 examples. also added http://en.wikibooks.org/wiki/Blender_3D:_Blending_Into_Python to the blender links main page.
Diffstat (limited to 'source/blender/python/api2_2x/Group.c')
-rwxr-xr-xsource/blender/python/api2_2x/Group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Group.c b/source/blender/python/api2_2x/Group.c
index a4289571187..83e276cc872 100755
--- a/source/blender/python/api2_2x/Group.c
+++ b/source/blender/python/api2_2x/Group.c
@@ -322,7 +322,7 @@ PyObject *M_Group_New( PyObject * self, PyObject * args )
if( !PyArg_ParseTuple( args, "|s", &name ) )
return EXPP_ReturnPyObjError( PyExc_TypeError,
- "string expected as argument" );
+ "string expected as argument or nothing" );
bl_group= add_group();