From 3c2665ec2eea9c8683507e2bab7e2de6c89aacfd Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Wed, 4 Jan 2006 19:27:47 +0000 Subject: [PATCH] fix to isInDoTables --- direct/src/distributed/DoCollectionManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/distributed/DoCollectionManager.py b/direct/src/distributed/DoCollectionManager.py index c50709f422..9f8a3d0abd 100755 --- a/direct/src/distributed/DoCollectionManager.py +++ b/direct/src/distributed/DoCollectionManager.py @@ -308,7 +308,7 @@ class DoCollectionManager: print "isInDoTables found " \ "%s in parentId:%s zoneId:%s"%( doId, parentId, zoneId) - return inDoHierarchy or (do.doId in self.doId2do) + return inDoHierarchy or (doId in self.doId2do) def removeDOFromTables(self, do): assert self.notify.debugStateCall(self)