##// END OF EJS Templates
convert-repo: fix recoding of committer
Matt Mackall -
r3910:4bc5a240 default
parent child Browse files
Show More
@@ -85,7 +85,7 b' class convert_git:'
85 committer = " ".join(p[:-2])
85 committer = " ".join(p[:-2])
86 if committer[0] == "<": committer = committer[1:-1]
86 if committer[0] == "<": committer = committer[1:-1]
87 committer = recode(committer)
87 committer = recode(committer)
88 message += "\ncommitter: %s\n" % v
88 message += "\ncommitter: %s\n" % committer
89 if n == "parent": parents.append(v)
89 if n == "parent": parents.append(v)
90
90
91 tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
91 tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
General Comments 0
You need to be logged in to leave comments. Login now