diff options
-rw-r--r-- | pym/portage_manifest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/portage_manifest.py b/pym/portage_manifest.py index 06f6ac6ed..6d412a105 100644 --- a/pym/portage_manifest.py +++ b/pym/portage_manifest.py @@ -321,8 +321,9 @@ class Manifest(object): myhashkeys = myhashes.keys() myhashkeys.sort() for h in myhashkeys: - yield Manifest1Entry(type="AUX", name=digest_path, - hashes={"size":myhashes["size"], h:myhashes[h]}) + if h != "size": + yield Manifest1Entry(type="AUX", name=digest_path, + hashes={"size":myhashes["size"], h:myhashes[h]}) except FileNotFound: pass |