mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01: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:
parent
08c2599c32
commit
418673c4bc
1 changed files with 1 additions and 1 deletions
|
@ -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'):
|
||||
|
|
Loading…
Reference in a new issue