Comment 2 for bug 2672

Revision history for this message
Curtis Hovey (sinzui) wrote :

From the duplicate:

I think this can be fixed with a single line addition in lp/bugs/model/bug.Bug to filter out deactivated pillars.

    @property
    def bugtasks(self):
    ...
        tasks = [task for task in result if task.pillar.active]
        return sorted(tasks, key=bugtask_sort_key)