Browse Source

fix to isInDoTables

Dave Schuyler 20 years ago
parent
commit
3c2665ec2e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/distributed/DoCollectionManager.py

+ 1 - 1
direct/src/distributed/DoCollectionManager.py

@@ -308,7 +308,7 @@ class DoCollectionManager:
                         print "isInDoTables found " \
                         print "isInDoTables found " \
                             "%s in parentId:%s zoneId:%s"%(
                             "%s in parentId:%s zoneId:%s"%(
                             doId, parentId, zoneId)
                             doId, parentId, zoneId)
-            return inDoHierarchy or (do.doId in self.doId2do)
+            return inDoHierarchy or (doId in self.doId2do)
 
 
     def removeDOFromTables(self, do):
     def removeDOFromTables(self, do):
         assert self.notify.debugStateCall(self)
         assert self.notify.debugStateCall(self)