##// END OF EJS Templates
Fix off by one in convert-repo tags...
mason@suse.com -
r1237:227cfbe3 default
parent child Browse files
Show More
@@ -86,9 +86,7 b' class convert_git:'
86 86 for f in os.listdir(self.path + "/.git/refs/tags"):
87 87 try:
88 88 h = file(self.path + "/.git/refs/tags/" + f).read().strip()
89 p, a, d, m = self.getcommit(h)
90 if not p: p = [h] # git is ugly, don't blame me
91 tags[f] = p[0]
89 tags[f] = h
92 90 except:
93 91 pass
94 92 return tags
General Comments 0
You need to be logged in to leave comments. Login now