fixed Finder bug when callback is deleted on removed tasks

This commit is contained in:
Joe Shochet 2003-09-22 21:06:33 +00:00
parent 564bb18332
commit 6446d3c673

View File

@ -787,7 +787,7 @@ class TaskManager:
import new
for taskPriList in self.taskList:
for task in taskPriList:
if task is None:
if (task is None) or (task.isRemoved()):
break
method = task.__call__
if (type(method) == types.MethodType):