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 fa90fd104..8cfb43a82 100644
--- a/pym/portage_manifest.py
+++ b/pym/portage_manifest.py
@@ -357,7 +357,7 @@ class Manifest(object):
def updateFileHashes(self, ftype, fname, checkExisting=True, ignoreMissing=True, reuseExisting=False):
""" Regenerate hashes for the given file """
if checkExisting:
- self.checkFileHashes(fname)
+ self.checkFileHashes(ftype, fname, ignoreMissing=ignoreMissing)
if not ignoreMissing and not self.fhashdict[ftype].has_key(fname):
raise FileNotInManifestException(fname)
if not self.fhashdict[ftype].has_key(fname):