Mercurial > public > mercurial-scm > hg
diff mercurial/streamclone.py @ 3853:c0b449154a90
switch to the .hg/store layout, fix the tests
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Fri, 01 Dec 2006 13:34:09 +0100 |
parents | 8643b9f90b51 |
children | f9e129684b5d |
line wrap: on
line diff
--- a/mercurial/streamclone.py Sun Dec 10 00:07:02 2006 +0100 +++ b/mercurial/streamclone.py Fri Dec 01 13:34:09 2006 +0100 @@ -79,6 +79,8 @@ entries = [] total_bytes = 0 for name, size in walkrepo(repo.spath): + if repo.decodefn: + name = repo.decodefn(name) entries.append((name, size)) total_bytes += size repolock.release()