##// END OF EJS Templates
style: remove multiple statement on a single line...
Boris Feld -
r35646:ab11af15 default
parent child Browse files
Show More
@@ -342,13 +342,15 b' class convert_git(common.converter_sourc'
342 p = v.split()
342 p = v.split()
343 tm, tz = p[-2:]
343 tm, tz = p[-2:]
344 author = " ".join(p[:-2])
344 author = " ".join(p[:-2])
345 if author[0] == "<": author = author[1:-1]
345 if author[0] == "<":
346 author = author[1:-1]
346 author = self.recode(author)
347 author = self.recode(author)
347 if n == "committer":
348 if n == "committer":
348 p = v.split()
349 p = v.split()
349 tm, tz = p[-2:]
350 tm, tz = p[-2:]
350 committer = " ".join(p[:-2])
351 committer = " ".join(p[:-2])
351 if committer[0] == "<": committer = committer[1:-1]
352 if committer[0] == "<":
353 committer = committer[1:-1]
352 committer = self.recode(committer)
354 committer = self.recode(committer)
353 if n == "parent":
355 if n == "parent":
354 parents.append(v)
356 parents.append(v)
General Comments 0
You need to be logged in to leave comments. Login now