From: Zac Medico Date: Mon, 26 May 2008 00:34:40 +0000 (-0000) Subject: Fix a broken reference to the Package.cpv_slot attribute. X-Git-Tag: v2.2_pre8~106 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3dee669874cc32456fbd2e5d94a331a26eaf6621;p=portage.git Fix a broken reference to the Package.cpv_slot attribute. svn path=/main/trunk/; revision=10425 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 80c24ff31..d2f4cc98f 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5648,7 +5648,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]: