summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-26 00:35:07 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-26 00:35:07 +0000
commit928604f3381a7693689956da3f87b139338c38e1 (patch)
treeeb88f804b104d911337beec94d9149fe20fcd666 /pym/portage.py
parentc2b59d398f84c02df6e2d3f785ee7ff8f8684659 (diff)
downloadportage-928604f3381a7693689956da3f87b139338c38e1.tar.gz
portage-928604f3381a7693689956da3f87b139338c38e1.tar.bz2
portage-928604f3381a7693689956da3f87b139338c38e1.zip
Fix a broken reference to the Package.cpv_slot attribute. (trunk r10425)
svn path=/main/branches/2.1.2/; revision=10426
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
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]: