diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py index 87b8ac323..958363042 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -4454,6 +4454,8 @@ class vardbapi(dbapi): return [] returnme=[] for x in list: + if x.startswith("."): + continue if x[0] == '-': #writemsg(red("INCOMPLETE MERGE:")+str(x[len("-MERGING-"):])+"\n") continue |