summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dep.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dep.py b/pym/portage/dep.py
index 12e26ab87..782405f49 100644
--- a/pym/portage/dep.py
+++ b/pym/portage/dep.py
@@ -1123,7 +1123,7 @@ def match_from_list(mydep, candidate_list):
for x in candidate_list:
xcpv = getattr(x, "cpv", None)
if xcpv is None:
- xcpv = dep_getcpv(x)
+ xcpv = remove_slot(x)
if not cpvequal(xcpv, mycpv):
continue
mylist.append(x)