Comments
Patch
@@ -780,7 +780,7 @@
diffopts = self.patchopts(diffopts, patch)
patchf = self.opener(patch, "w")
- comments = str(ph)
+ comments = bytes(ph)
if comments:
patchf.write(comments)
self.printdiff(repo, diffopts, head, n, fp=patchf)
@@ -363,7 +363,7 @@
# empty file, write version first
f.write(str(storageversion) + '\0')
f.seek(0, os.SEEK_END)
- f.write(str(entry) + '\0')
+ f.write(bytes(entry) + '\0')
def filtered(self, namespace=None, name=None):
"""Yield all journal entries with the given namespace or name
@@ -222,7 +222,7 @@
data = ctx[f].data()
if (target == "to-lf" and "\r\n" in data
or target == "to-crlf" and singlelf.search(data)):
- failed.append((f, target, str(ctx)))
+ failed.append((f, target, bytes(ctx)))
break
return failed