Show More
@@ -86,9 +86,7 b' class convert_git:' | |||||
86 | for f in os.listdir(self.path + "/.git/refs/tags"): |
|
86 | for f in os.listdir(self.path + "/.git/refs/tags"): | |
87 | try: |
|
87 | try: | |
88 | h = file(self.path + "/.git/refs/tags/" + f).read().strip() |
|
88 | h = file(self.path + "/.git/refs/tags/" + f).read().strip() | |
89 | p, a, d, m = self.getcommit(h) |
|
89 | tags[f] = h | |
90 | if not p: p = [h] # git is ugly, don't blame me |
|
|||
91 | tags[f] = p[0] |
|
|||
92 | except: |
|
90 | except: | |
93 | pass |
|
91 | pass | |
94 | return tags |
|
92 | return tags |
General Comments 0
You need to be logged in to leave comments.
Login now