|
@@ -301,8 +301,8 @@ class DoCollectionManager:
|
|
|
def isInDoTables(self, doId):
|
|
def isInDoTables(self, doId):
|
|
|
assert self.notify.debugStateCall(self)
|
|
assert self.notify.debugStateCall(self)
|
|
|
inDoHierarchy = False
|
|
inDoHierarchy = False
|
|
|
- for parentId, parentZoneDict in self.__doHierarchy.values():
|
|
|
|
|
- for zoneId, zoneDoSet in parentZoneDict.values():
|
|
|
|
|
|
|
+ for parentId, parentZoneDict in self.__doHierarchy.items():
|
|
|
|
|
+ for zoneId, zoneDoSet in parentZoneDict.items():
|
|
|
if doId in zoneDoSet:
|
|
if doId in zoneDoSet:
|
|
|
inDoHierarchy = True
|
|
inDoHierarchy = True
|
|
|
print "isInDoTables found " \
|
|
print "isInDoTables found " \
|