diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-09-29 18:28:29 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-09-29 18:28:29 +0000 |
commit | 1df6d9a69ac665d561043cd744d4c36028254b94 (patch) | |
tree | 6c9839807f2f3d8492df0b22801405a2129c6aa5 | |
parent | 4d8e58cd0c11203f127c9ca1431aec41fee4a929 (diff) | |
download | portage-1df6d9a69ac665d561043cd744d4c36028254b94.tar.gz portage-1df6d9a69ac665d561043cd744d4c36028254b94.tar.bz2 portage-1df6d9a69ac665d561043cd744d4c36028254b94.zip |
Allow env.d file names with 3 characters. This is a regression from r4451.
svn path=/main/trunk/; revision=4558
-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 |