summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-09-22 09:03:43 +0200
committerZac Medico <zmedico@gentoo.org>2010-09-26 23:50:14 -0700
commit880752a2a183ede81fc89e0791626a6b38f4bce5 (patch)
treed3051e4d2191505e52529f8f6bee2adb202ef6f4 /pym
parentb484ce5218c988151416065ad86af2599838b77f (diff)
downloadportage-880752a2a183ede81fc89e0791626a6b38f4bce5.tar.gz
portage-880752a2a183ede81fc89e0791626a6b38f4bce5.tar.bz2
portage-880752a2a183ede81fc89e0791626a6b38f4bce5.zip
Fix breakage from the last commit
Diffstat (limited to 'pym')
-rw-r--r--pym/_emerge/depgraph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index b28f2fe59..966a9c5ef 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -2486,7 +2486,7 @@ class depgraph(object):
# Make sure that cpv from the current repo satisfies the atom.
# This might not be the case if there are several repos with
# the same cpv, but different metadata keys, like SLOT.
- if not InternalPackageSet(initial_atoms=(atom,)
+ if not InternalPackageSet(initial_atoms=(atom,), allow_repo=True,
).findAtomForPackage(pkg, modified_use=self._pkg_use_enabled(pkg)):
continue
yield pkg