Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
remote-bzr: fix for files with spaces
[gitweb.git]
/
contrib
/
remote-helpers
/
git-remote-bzr
diff --git
a/contrib/remote-helpers/git-remote-bzr
b/contrib/remote-helpers/git-remote-bzr
index 8a4df51fadc23bac7fb86239741c09c15e1a7dfd..35664c65236c45e15f525f9c65d9ab9d866e3dd8 100755
(executable)
--- a/
contrib/remote-helpers/git-remote-bzr
+++ b/
contrib/remote-helpers/git-remote-bzr
@@
-621,7
+621,7
@@
def parse_commit(parser):
mark = int(mark_ref[1:])
f = { 'mode' : m, 'mark' : mark }
elif parser.check('D'):
- t, path = line.split(' ')
+ t, path = line.split(' '
, 1
)
f = { 'deleted' : True }
else:
die('Unknown file command: %s' % line)