Fix Manifest.updateAllHashes()
authorMike Gilbert <floppymaster@gmail.com>
Wed, 4 May 2011 03:28:21 +0000 (23:28 -0400)
committerZac Medico <zmedico@gentoo.org>
Wed, 4 May 2011 04:11:22 +0000 (21:11 -0700)
pym/portage/manifest.py

index ec801a3559e042dc161ee415fa5ca4327700c163..de7540f962971f48f653bf03062755b71cd1b8d3 100644 (file)
@@ -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):