temp workaround

This commit is contained in:
David Rose 2007-02-08 22:00:14 +00:00
parent 0869d551ae
commit 46e3aa267c

View File

@ -27,7 +27,11 @@ class IntervalManager(CIntervalManager):
##self.dd = self
if globalPtr:
self.cObj = CIntervalManager.getGlobalPtr()
Dtool_BorrowThisReference(self, self.cObj)
# Temporary try..except for old Panda.
try:
Dtool_BorrowThisReference(self, self.cObj)
except:
Dtool_BarrowThisRefrence(self, self.cObj)
self.dd = self
else:
CIntervalManager.__init__(self)