# HG changeset patch # User Augie Fackler # Date 1495993336 14400 # Node ID 3b8155305fbee24221bf1739fb9076703e50f86b # Parent 37863db504145ddac59b18a387b8cb02b61f3216 util: use sysstr.join instead of bytes.join in textwrap wrapper diff -r 37863db50414 -r 3b8155305fbe mercurial/util.py --- 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