diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index 8f5fec897..d13cac679 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -537,7 +537,7 @@ def env_update(makelinks=1, target_root=None, prev_mtimes=None): fns.sort() templist = [] for x in fns: - if len(x) <= 3: + if len(x) < 3: continue if not x[0].isdigit() or not x[1].isdigit(): continue |