summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 03b761abf..9d5b25cf7 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -4141,6 +4141,8 @@ class vardbapi(dbapi):
for x in self.categories:
for y in listdir(basepath+x,EmptyOnError=1):
+ if y.startswith("."):
+ continue
subpath = x+"/"+y
# -MERGING- should never be a cpv, nor should files.
if os.path.isdir(basepath+subpath) and (pkgsplit(y) is not None):