summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-26 00:34:40 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-26 00:34:40 +0000
commit3dee669874cc32456fbd2e5d94a331a26eaf6621 (patch)
tree997ba92b39eece654c1cebef0725a75c004f60d2 /pym
parent92f8c49134665e9c064ce122bc85b8bc30d65518 (diff)
downloadportage-3dee669874cc32456fbd2e5d94a331a26eaf6621.tar.gz
portage-3dee669874cc32456fbd2e5d94a331a26eaf6621.tar.bz2
portage-3dee669874cc32456fbd2e5d94a331a26eaf6621.zip
Fix a broken reference to the Package.cpv_slot attribute.
svn path=/main/trunk/; revision=10425
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
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]: