diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-subslot-deps.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/check-subslot-deps.py b/scripts/check-subslot-deps.py index 26f41ca..6a0984e 100755 --- a/scripts/check-subslot-deps.py +++ b/scripts/check-subslot-deps.py @@ -25,8 +25,7 @@ class CheckSubSlot: print("%s: %s" % (cpv, " ".join(missingSubSlotDep))) def _getDepend(self, cpv): - deps = self.dbapi.aux_get(cpv, ["DEPEND", "RDEPEND"]) - deps = deps[0] + " " + deps[1] + deps = self.dbapi.aux_get(cpv, ["RDEPEND"])[0] result = [] for dep in deps.split(): if self._isValidAtom(dep): |