From: Mike Gilbert Date: Wed, 4 May 2011 03:28:21 +0000 (-0400) Subject: Fix Manifest.updateAllHashes() X-Git-Tag: v2.1.9.47~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=22b50e4d2502bc01d6133e1252e9d49ce447e5e9;p=portage.git Fix Manifest.updateAllHashes() --- diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py index ec801a355..de7540f96 100644 --- a/pym/portage/manifest.py +++ b/pym/portage/manifest.py @@ -481,7 +481,7 @@ class Manifest(object): def updateAllHashes(self, checkExisting=False, ignoreMissingFiles=True): """ Regenerate all hashes for all files in this Manifest. """ - for ftype in portage.const.MANIFEST2_IDENTIFIERS: + for idtype in portage.const.MANIFEST2_IDENTIFIERS: self.updateTypeHashes(idtype, fname, checkExisting) def updateCpvHashes(self, cpv, ignoreMissingFiles=True):