summaryrefslogtreecommitdiffstats
path: root/pym/portage_manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage_manifest.py')
-rw-r--r--pym/portage_manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage_manifest.py b/pym/portage_manifest.py
index 6d412a105..1320ba235 100644
--- a/pym/portage_manifest.py
+++ b/pym/portage_manifest.py
@@ -321,7 +321,7 @@ class Manifest(object):
myhashkeys = myhashes.keys()
myhashkeys.sort()
for h in myhashkeys:
- if h != "size":
+ if h in portage_const.MANIFEST1_HASH_FUNCTIONS:
yield Manifest1Entry(type="AUX", name=digest_path,
hashes={"size":myhashes["size"], h:myhashes[h]})
except FileNotFound: