summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-03-30 06:11:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-03-30 06:11:13 (GMT)
commit510a309e5e0997c73d97c85332a99d622f06ace6 (patch)
tree4736eb8c3b4f53071a31030fe20a9cfdeeadfcfc /contrib
parentb8fee3a3884b4a18c2f0b5313255dd180c44ab78 (diff)
parent8e4f767ba77051aedaac7ef6639ee990778866c7 (diff)
downloadgit-510a309e5e0997c73d97c85332a99d622f06ace6.zip
git-510a309e5e0997c73d97c85332a99d622f06ace6.tar.gz
git-510a309e5e0997c73d97c85332a99d622f06ace6.tar.bz2
Merge branch 'maint-1.6.1' into maint
* maint-1.6.1: import-zips: fix thinko
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/fast-import/import-zips.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/fast-import/import-zips.py b/contrib/fast-import/import-zips.py
index c674fa2..7051a83 100755
--- a/contrib/fast-import/import-zips.py
+++ b/contrib/fast-import/import-zips.py
@@ -44,7 +44,8 @@ for zipfile in argv[1:]:
common_prefix = name[:name.rfind('/') + 1]
else:
while not name.startswith(common_prefix):
- common_prefix = name[:name.rfind('/') + 1]
+ last_slash = common_prefix[:-1].rfind('/') + 1
+ common_prefix = common_prefix[:last_slash]
mark[name] = ':' + str(next_mark)
next_mark += 1