[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14292] trunk/blender/source/blender/ python/api2_2x/Scene.c: TimeLine PyType was not getting initialized, causing auto-completion in the interactive console to crash.

Campbell Barton ideasman42 at gmail.com
Mon Mar 31 16:29:41 CEST 2008


Revision: 14292
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14292
Author:   campbellbarton
Date:     2008-03-31 16:29:40 +0200 (Mon, 31 Mar 2008)

Log Message:
-----------
TimeLine PyType was not getting initialized, causing auto-completion in the interactive console to crash.

Modified Paths:
--------------
    trunk/blender/source/blender/python/api2_2x/Scene.c

Modified: trunk/blender/source/blender/python/api2_2x/Scene.c
===================================================================
--- trunk/blender/source/blender/python/api2_2x/Scene.c	2008-03-31 08:30:10 UTC (rev 14291)
+++ trunk/blender/source/blender/python/api2_2x/Scene.c	2008-03-31 14:29:40 UTC (rev 14292)
@@ -556,6 +556,7 @@
 	PyDict_SetItemString( dict, "Render", Render_Init(  ) );
 	PyDict_SetItemString( dict, "Radio", Radio_Init(  ) );
 	PyDict_SetItemString( dict, "Sequence", Sequence_Init(  ) );
+	PyDict_SetItemString( dict, "TimeLine", TimeLine_Init(  ) );
 	
 	return submodule;
 }





More information about the Bf-blender-cvs mailing list