From: Zac Medico Date: Mon, 26 May 2008 00:35:07 +0000 (-0000) Subject: Fix a broken reference to the Package.cpv_slot attribute. (trunk r10425) X-Git-Tag: v2.1.5.3~48 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=928604f3381a7693689956da3f87b139338c38e1;p=portage.git Fix a broken reference to the Package.cpv_slot attribute. (trunk r10425) svn path=/main/branches/2.1.2/; revision=10426 --- diff --git a/pym/portage.py b/pym/portage.py index 2bcbd4e07..68c2bb645 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5644,7 +5644,7 @@ def dep_zapdeps(unreduced, reduced, myroot, use_binaries=0, trees=None): # Check if the atom would result in a direct circular # dependency and try to avoid that if it seems likely # to be unresolvable. - cpv_slot_list = [parent.cpv_slot] + cpv_slot_list = [parent] circular_atom = None for atom in atoms: if "!" == atom[:1]: