From: Zac Medico Date: Sat, 26 Apr 2008 05:13:39 +0000 (-0000) Subject: Don't assume that altlist() will succeed inside display_problems(). X-Git-Tag: v2.2_pre6~108 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d1bf7a6eb4d25460560a6a5054159f404f164653;p=portage.git Don't assume that altlist() will succeed inside display_problems(). svn path=/main/trunk/; revision=9980 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 85d6aa942..59024197c 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -4375,7 +4375,7 @@ class depgraph(object): to ensure that the user is notified of problems with the graph. """ - task_list = self.altlist() + task_list = self._serialized_tasks_cache # Any blockers must be appended to the tail of the list, # so we only need to check the last item.