Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Adjust the output parsing of git name-rev to handle the output of the latest git version.
author
Simon Hausmann
<hausmann@kde.org>
Wed, 7 Mar 2007 18:58:54 +0000
(19:58 +0100)
committer
Simon Hausmann
<hausmann@kde.org>
Wed, 7 Mar 2007 18:58:54 +0000
(19:58 +0100)
Signed-off-by: Simon Hausmann <hausmann@kde.org>
contrib/fast-import/p4-clean-tags.py
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
5ea919d
)
diff --git
a/contrib/fast-import/p4-clean-tags.py
b/contrib/fast-import/p4-clean-tags.py
index 0be51f64053ddeea1613ec15813432e7df9d081f..924ff89cc65531540cd49e4e58b9941f2e36cccc 100755
(executable)
--- a/
contrib/fast-import/p4-clean-tags.py
+++ b/
contrib/fast-import/p4-clean-tags.py
@@
-25,7
+25,10
@@
sout, sin, serr = popen2.popen3("git-name-rev --tags `git-rev-parse %s`" % branch)
output = sout.read()
tagIdx = output.index(" tags/p4/")
-caretIdx = output.index("^")
+try:
+ caretIdx = output.index("^")
+except:
+ caretIdx = len(output) - 1
rev = int(output[tagIdx + 9 : caretIdx])
allTags = os.popen("git tag -l p4/").readlines()