diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-05-06 02:34:47 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-05-06 02:34:47 +0000 |
commit | f6af62c26a2f8c87e73eded75443db6b2d7bb689 (patch) | |
tree | 48b411bbc80c8574cbd74593e66c6cde5dc2b832 | |
parent | 7f6ebe8743bba45822b488d6f3cf48911139c744 (diff) | |
download | portage-f6af62c26a2f8c87e73eded75443db6b2d7bb689.tar.gz portage-f6af62c26a2f8c87e73eded75443db6b2d7bb689.tar.bz2 portage-f6af62c26a2f8c87e73eded75443db6b2d7bb689.zip |
Remove the uppercase requirement on flat_hash metadata keys so that _eclasses_ will work. This is equivalent to the patch by Brian Harring that went into 2.0.54-r2 for forward compatibility with planned changes in the rsync metadata cache.
svn path=/main/trunk/; revision=3323
-rw-r--r-- | pym/cache/metadata.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pym/cache/metadata.py b/pym/cache/metadata.py index 99a7ad6db..1433ad489 100644 --- a/pym/cache/metadata.py +++ b/pym/cache/metadata.py @@ -54,9 +54,7 @@ class database(flat_hash.database): elif c == "_" or c.isdigit(): continue break - elif not c.isupper(): - break - + if not hashed: # non hashed. d.clear() |