summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5ea919d)
raw | patch | inline | side by side (parent: 5ea919d)
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 |
index 0be51f64053ddeea1613ec15813432e7df9d081f..924ff89cc65531540cd49e4e58b9941f2e36cccc 100755 (executable)
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()