summaryrefslogtreecommitdiffstats
path: root/pym/portage_dep.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage_dep.py')
-rw-r--r--pym/portage_dep.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage_dep.py b/pym/portage_dep.py
index 0d38cf516..44878e913 100644
--- a/pym/portage_dep.py
+++ b/pym/portage_dep.py
@@ -725,8 +725,8 @@ def match_from_list(mydep, candidate_list):
candidate_list = mylist
mylist = []
for x in candidate_list:
- xslot = getattr(x, "slot", None)
- if xslot is None and isinstance(x, basestring):
+ xslot = getattr(x, "slot", False)
+ if xslot is False:
xslot = dep_getslot(x)
if xslot is not None and xslot != slot:
continue