Skip to content

Commit f2ad051

Browse files
committed
Merge branch 'maint'
* maint: git-svn: fix ls-tree usage with dash-prefixed paths import-zips: fix thinko
2 parents c18f75a + 510a309 commit f2ad051

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

contrib/fast-import/import-zips.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def printlines(list):
4444
common_prefix = name[:name.rfind('/') + 1]
4545
else:
4646
while not name.startswith(common_prefix):
47-
common_prefix = name[:name.rfind('/') + 1]
47+
last_slash = common_prefix[:-1].rfind('/') + 1
48+
common_prefix = common_prefix[:last_slash]
4849

4950
mark[name] = ':' + str(next_mark)
5051
next_mark += 1

0 commit comments

Comments
 (0)