From 2f6bbbe50964b89e2d17aa51cb0f07ecca19f003 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 11 Mar 2009 03:40:20 +0000 Subject: Fix the priorities display in digraph.debug_print() so it shows the highest priority (since multiple priorities are now supported). (trunk r12582) svn path=/main/branches/2.1.6/; revision=12863 --- pym/portage/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 27275ecaf..a3884cc56 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -600,9 +600,8 @@ class digraph(object): output("depends on\n") else: output("(no children)\n") - for child in self.nodes[node][0]: - output(" %s (%s)\n" % \ - (child, self.nodes[node][0][child],)) + for child, priorities in self.nodes[node][0].iteritems(): + output(" %s (%s)\n" % (child, priorities[-1],)) #parse /etc/env.d and generate /etc/profile.env -- cgit v1.2.3-1-g7c22