summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorMike Gilbert <floppymaster@gmail.com>2011-05-03 23:28:21 -0400
committerZac Medico <zmedico@gentoo.org>2011-05-03 21:11:22 -0700
commit80380311abe71536ac4dda8db54bf9d0b0ec03c1 (patch)
treeee0402b07602ad3b7d37039b788f88b9f3098fce /pym
parent9a3a1c4b2d182bef0579166589475df93247a009 (diff)
downloadportage-80380311abe71536ac4dda8db54bf9d0b0ec03c1.tar.gz
portage-80380311abe71536ac4dda8db54bf9d0b0ec03c1.tar.bz2
portage-80380311abe71536ac4dda8db54bf9d0b0ec03c1.zip
Fix Manifest.updateAllHashes()
Diffstat (limited to 'pym')
-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 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):