changeset 32546:3b8155305fbe

util: use sysstr.join instead of bytes.join in textwrap wrapper
author Augie Fackler <raf@durin42.com>
date Sun, 28 May 2017 13:42:16 -0400
parents 37863db50414
children 0cec8ad579d4
files mercurial/util.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/util.py	Sun May 28 15:42:05 2017 -0400
+++ b/mercurial/util.py	Sun May 28 13:42:16 2017 -0400
@@ -2338,7 +2338,7 @@
                 # Convert current line back to a string and store it in list
                 # of all lines (return value).
                 if cur_line:
-                    lines.append(indent + ''.join(cur_line))
+                    lines.append(indent + r''.join(cur_line))
 
             return lines