Submitter | Augie Fackler |
---|---|
Date | May 29, 2017, 2:32 p.m. |
Message ID | <e79e715a5249e5c90c0e.1496068348@imladris.local> |
Download | mbox | patch |
Permalink | /patch/21050/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/util.py b/mercurial/util.py --- a/mercurial/util.py +++ b/mercurial/util.py @@ -2338,7 +2338,7 @@ def MBTextWrapper(**kwargs): # 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