##// 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 342 p = v.split()
343 343 tm, tz = p[-2:]
344 344 author = " ".join(p[:-2])
345 if author[0] == "<": author = author[1:-1]
345 if author[0] == "<":
346 author = author[1:-1]
346 347 author = self.recode(author)
347 348 if n == "committer":
348 349 p = v.split()
349 350 tm, tz = p[-2:]
350 351 committer = " ".join(p[:-2])
351 if committer[0] == "<": committer = committer[1:-1]
352 if committer[0] == "<":
353 committer = committer[1:-1]
352 354 committer = self.recode(committer)
353 355 if n == "parent":
354 356 parents.append(v)
General Comments 0
You need to be logged in to leave comments. Login now