Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 6900:def492d1b592
store: change handling of decoding errors
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Aug 2008 20:18:43 -0500 |
parents | 40690d614ce6 |
children | 43a817f3a649 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Wed Aug 13 20:18:43 2008 -0500 +++ b/mercurial/localrepo.py Wed Aug 13 20:18:43 2008 -0500 @@ -2066,7 +2066,7 @@ total_bytes = 0 # get consistent snapshot of repo, lock during scan lock = self.lock() - for name, size in self.store.walk(): + for name, ename, size in self.store.walk(): entries.append((name, size)) total_bytes += size return entries, total_bytes