summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 8ef79150d..ff6857842 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -6699,12 +6699,9 @@ class vardbapi(dbapi):
returnme = []
for x in dir_list:
- if x.startswith("."):
- continue
- if x[0] == '-':
- #writemsg(red("INCOMPLETE MERGE:")+str(x[len("-MERGING-"):])+"\n")
+ if self._excluded_dirs.match(x) is not None:
continue
- ps=pkgsplit(x)
+ ps = pkgsplit(x)
if not ps:
self.invalidentry(self.root+VDB_PATH+"/"+mysplit[0]+"/"+x)
continue