Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/
Date: Wed, 04 May 2011 04:12:55
Message-Id: 80380311abe71536ac4dda8db54bf9d0b0ec03c1.zmedico@gentoo
1 commit: 80380311abe71536ac4dda8db54bf9d0b0ec03c1
2 Author: Mike Gilbert <floppymaster <AT> gmail <DOT> com>
3 AuthorDate: Wed May 4 03:28:21 2011 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 04:11:22 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=80380311
7
8 Fix Manifest.updateAllHashes()
9
10 ---
11 pym/portage/manifest.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py
15 index ec801a3..de7540f 100644
16 --- a/pym/portage/manifest.py
17 +++ b/pym/portage/manifest.py
18 @@ -481,7 +481,7 @@ class Manifest(object):
19
20 def updateAllHashes(self, checkExisting=False, ignoreMissingFiles=True):
21 """ Regenerate all hashes for all files in this Manifest. """
22 - for ftype in portage.const.MANIFEST2_IDENTIFIERS:
23 + for idtype in portage.const.MANIFEST2_IDENTIFIERS:
24 self.updateTypeHashes(idtype, fname, checkExisting)
25
26 def updateCpvHashes(self, cpv, ignoreMissingFiles=True):