diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2012-11-28 02:01:32 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-27 18:03:57 -0800 |
commit | 418673c4bc48c0b54856449739023b4f978ea235 (patch) | |
tree | 5c211f6ad93fb2be63f6e1a251635272ddc113db | |
parent | remote-hg: avoid bad refs (diff) | |
download | tgif-418673c4bc48c0b54856449739023b4f978ea235.tar.xz |
remote-hg: fix for files with spaces
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | contrib/remote-helpers/git-remote-hg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/remote-helpers/git-remote-hg b/contrib/remote-helpers/git-remote-hg index 07754bdeb2..62c39db5b4 100755 --- a/contrib/remote-helpers/git-remote-hg +++ b/contrib/remote-helpers/git-remote-hg @@ -565,7 +565,7 @@ def parse_commit(parser): for line in parser: if parser.check('M'): - t, m, mark_ref, path = line.split(' ') + t, m, mark_ref, path = line.split(' ', 3) mark = int(mark_ref[1:]) f = { 'mode' : hgmode(m), 'data' : blob_marks[mark] } elif parser.check('D'): |