1
0
mirror of https://github.com/git/git.git synced 2024-10-22 12:28:32 +02:00

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>
This commit is contained in:
Felipe Contreras 2012-11-28 02:01:32 +01:00 committed by Junio C Hamano
parent 08c2599c32
commit 418673c4bc

@ -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'):