From f8095a5711e245b7558985de27c497ae9c6e409f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 4 Nov 2006 05:47:27 +0000 Subject: [PATCH] Allow env.d file names with 3 characters. This is a regression from r4451. (trunk r4558) svn path=/main/branches/2.1.1/; revision=4932 --- pym/portage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage.py b/pym/portage.py index 8f774d9ee..7844dc2cc 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -465,7 +465,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 -- 2.26.2