mercurial/revlogutils/sidedata.py
changeset 43077 687b865b95ad
parent 43076 2372284d9457
child 43142 beed7ce61681
--- a/mercurial/revlogutils/sidedata.py	Sun Oct 06 09:45:02 2019 -0400
+++ b/mercurial/revlogutils/sidedata.py	Sun Oct 06 09:48:39 2019 -0400
@@ -63,7 +63,7 @@
     for key, value in sidedata:
         rawtext.append(value)
     rawtext.append(bytes(text))
-    return ''.join(rawtext), False
+    return b''.join(rawtext), False
 
 
 def sidedatareadprocessor(rl, text):