Skip to content

Commit 8e4f767

Browse files
committed
Merge branch 'maint-1.6.0' into maint-1.6.1
* maint-1.6.0: import-zips: fix thinko
2 parents 81db4ab + 63801da commit 8e4f767

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)