##// END OF EJS Templates
convert: tolerate spaces between splicemap parent ids (issue3203)...
Patrick Mezard -
r16118:d554a3dc stable
parent child Browse files
Show More
@@ -419,7 +419,7 b' def parsesplicemap(path):'
419 419 fp = open(path, 'r')
420 420 for i, line in enumerate(fp):
421 421 try:
422 child, parents = line.splitlines()[0].rstrip().rsplit(' ', 1)
422 child, parents = line.splitlines()[0].rstrip().split(' ', 1)
423 423 parents = parents.replace(',', ' ').split()
424 424 except ValueError:
425 425 raise util.Abort(_('syntax error in %s(%d): child parent1'
General Comments 0
You need to be logged in to leave comments. Login now