[Zapp-cvs-commit] ZApp ZApp_Base.py,1.19,1.20
Brought to you by:
sspickle
|
From: <ssp...@us...> - 2003-06-25 15:47:35
|
Update of /cvsroot/zapp/ZApp
In directory sc8-pr-cvs1:/tmp/cvs-serv23161
Modified Files:
ZApp_Base.py
Log Message:
fixed app meta-type check..
Index: ZApp_Base.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_Base.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** ZApp_Base.py 25 Jun 2003 11:45:53 -0000 1.19
--- ZApp_Base.py 25 Jun 2003 15:47:30 -0000 1.20
***************
*** 233,242 ****
currObject = self
!
while 1:
if (not currObject) or (not hasattr(currObject, 'meta_type')):
raise RuntimeError, "Hmm. thaf's odd.. I can't find any ZApp Application here!"
! if currObject.meta_type == ZApp_Application.ZApp_Application.meta_type:
break
--- 233,242 ----
currObject = self
!
while 1:
if (not currObject) or (not hasattr(currObject, 'meta_type')):
raise RuntimeError, "Hmm. thaf's odd.. I can't find any ZApp Application here!"
! if currObject.meta_type == self.applicationMetaType:
break
|