summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-27 00:23:47 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-27 00:23:47 +0000
commit789e7b1601e33954aa5a81c82affeb90778d6283 (patch)
tree3101862b2eef2891ef157d48d55e82251fbcd5af
parentb3aaf3fe867ccb1f9cbb088be5217fe4c7116021 (diff)
downloadportage-789e7b1601e33954aa5a81c82affeb90778d6283.tar.gz
portage-789e7b1601e33954aa5a81c82affeb90778d6283.tar.bz2
portage-789e7b1601e33954aa5a81c82affeb90778d6283.zip
Don't assume that altlist() will succeed inside display_problems().
(trunk r9980) svn path=/main/branches/2.1.2/; revision=9986
-rwxr-xr-xbin/emerge2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge
index 52975a86a..eec45e34b 100755
--- a/bin/emerge
+++ b/bin/emerge
@@ -4528,7 +4528,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.