Skip to content
Snippets Groups Projects
Commit ae596fac authored by Kyle Lippincott's avatar Kyle Lippincott
Browse files

crecord: fix a concatenation of bytes and str on py3

Differential Revision: https://phab.mercurial-scm.org/D7970
parent e96ed3a6
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@
encoding,
error,
patch as patchmod,
pycompat,
scmutil,
util,
)
......@@ -1113,7 +1114,7 @@
# strip \n, and convert control characters to ^[char] representation
text = re.sub(
br'[\x00-\x08\x0a-\x1f]',
lambda m: b'^' + chr(ord(m.group()) + 64),
lambda m: b'^' + pycompat.sysbytes(chr(ord(m.group()) + 64)),
text.strip(b'\n'),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment