##// END OF EJS Templates
convert: detect false cset boundaries in cvsps descriptions
jakob krainz -
r15205:4e5b7d13 default
parent child Browse files
Show More
@@ -363,8 +363,14 b' def createlog(ui, directory=None, root="'
363 elif state == 8:
363 elif state == 8:
364 # store commit log message
364 # store commit log message
365 if re_31.match(line):
365 if re_31.match(line):
366 state = 5
366 cpeek = peek
367 store = True
367 if cpeek.endswith('\n'):
368 cpeek = cpeek[:-1]
369 if re_50.match(cpeek):
370 state = 5
371 store = True
372 else:
373 e.comment.append(line)
368 elif re_32.match(line):
374 elif re_32.match(line):
369 state = 0
375 state = 0
370 store = True
376 store = True
General Comments 0
You need to be logged in to leave comments. Login now