summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dbapi/vartree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index ac6e10ae3..eae494ada 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -857,10 +857,10 @@ class vardbapi(dbapi):
# -MERGING- should never be a cpv, nor should files.
try:
if catpkgsplit(subpath) is None:
- self.invalidentry(os.path.join(self.root, subpath))
+ self.invalidentry(self.getpath(subpath))
continue
except InvalidData:
- self.invalidentry(os.path.join(self.root, subpath))
+ self.invalidentry(self.getpath(subpath))
continue
returnme.append(subpath)
return returnme