Update of /cvsroot/modeling/ProjectModeling/Modeling
In directory sc8-pr-cvs1:/tmp/cvs-serv24374
Modified Files:
ModelSet.py
Log Message:
Fixed typos
Index: ModelSet.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/ModelSet.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ModelSet.py 7 May 2003 11:22:07 -0000 1.6
--- ModelSet.py 7 May 2003 11:28:45 -0000 1.7
***************
*** 105,109 ****
A sample configuration file is like::
! [DEFAULTS]
host: localhost
--- 105,109 ----
A sample configuration file is like::
! [DEFAULT]
host: localhost
***************
*** 150,154 ****
try: options.remove('adaptor')
except ValueError: pass
! for key in options: ##### TBD ++ section [Default]
defaults[key]=cp.get(model.name(), key)
model.setConnectionDictionary(defaults)
--- 150,154 ----
try: options.remove('adaptor')
except ValueError: pass
! for key in options:
defaults[key]=cp.get(model.name(), key)
model.setConnectionDictionary(defaults)
|