mercurial/util.py
changeset 32546 3b8155305fbe
parent 32527 47ce079b1afa
child 32652 9929af2b09b4
equal deleted inserted replaced
32545:37863db50414 32546:3b8155305fbe
  2336                     del cur_line[-1]
  2336                     del cur_line[-1]
  2337 
  2337 
  2338                 # Convert current line back to a string and store it in list
  2338                 # Convert current line back to a string and store it in list
  2339                 # of all lines (return value).
  2339                 # of all lines (return value).
  2340                 if cur_line:
  2340                 if cur_line:
  2341                     lines.append(indent + ''.join(cur_line))
  2341                     lines.append(indent + r''.join(cur_line))
  2342 
  2342 
  2343             return lines
  2343             return lines
  2344 
  2344 
  2345     global MBTextWrapper
  2345     global MBTextWrapper
  2346     MBTextWrapper = tw
  2346     MBTextWrapper = tw