summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/__init__.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-26 05:13:39 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-26 05:13:39 +0000
commitd1bf7a6eb4d25460560a6a5054159f404f164653 (patch)
tree09cf4767f48f7689ee690010a0aa6140729747a8 /pym/_emerge/__init__.py
parent9115ed288f07829de2b9f8fc154d3e599ed71ce4 (diff)
downloadportage-d1bf7a6eb4d25460560a6a5054159f404f164653.tar.gz
portage-d1bf7a6eb4d25460560a6a5054159f404f164653.tar.bz2
portage-d1bf7a6eb4d25460560a6a5054159f404f164653.zip
Don't assume that altlist() will succeed inside display_problems().
svn path=/main/trunk/; revision=9980
Diffstat (limited to 'pym/_emerge/__init__.py')
-rw-r--r--pym/_emerge/__init__.py2
1 files changed, 1 insertions, 1 deletions
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.