Update of /cvsroot/modeling/ProjectModeling/Modeling/ModelMasons/Python_bricks
In directory sc8-pr-cvs1:/tmp/cvs-serv16690/Python_bricks
Modified Files:
module_base.tmpl
Log Message:
Fixed: incorrect import statement
Index: module_base.tmpl
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/ModelMasons/Python_bricks/module_base.tmpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** module_base.tmpl 20 Apr 2003 16:10:40 -0000 1.1
--- module_base.tmpl 25 Apr 2003 18:37:35 -0000 1.2
***************
*** 1,5 ****
## This template will build the module
#for entity in $entities:
! from $(entity.className())Base import $(entity.className())Base
#end for
from Modeling.Validation import ValidationException
--- 1,5 ----
## This template will build the module
#for entity in $entities:
! from $(entity.moduleName())Base import $(entity.className())Base
#end for
from Modeling.Validation import ValidationException
|