streamclone: stream_out tried to decodefilename non-normalized paths
authorPatrick Mezard <pmezard@gmail.com>
Mon, 19 Feb 2007 09:59:37 +0100
changeset 4127 a3a6f71edf2e
parent 4122 306055f5b65c
child 4128 43d8f7466920
streamclone: stream_out tried to decodefilename non-normalized paths
mercurial/streamclone.py
--- a/mercurial/streamclone.py	Thu Mar 01 22:15:17 2007 +0100
+++ b/mercurial/streamclone.py	Mon Feb 19 09:59:37 2007 +0100
@@ -79,7 +79,7 @@
     entries = []
     total_bytes = 0
     for name, size in walkrepo(repo.spath):
-        name = util.pconvert(repo.decodefn(name))
+        name = repo.decodefn(util.pconvert(name))
         entries.append((name, size))
         total_bytes += size
     repolock.release()