hgext/convert/cvsps.py
changeset 43080 86e4daa2d54c
parent 43077 687b865b95ad
child 43085 eef9a2d67051
--- a/hgext/convert/cvsps.py	Sun Oct 06 10:10:14 2019 -0400
+++ b/hgext/convert/cvsps.py	Sun Oct 06 10:51:16 2019 -0400
@@ -1021,7 +1021,7 @@
                 )
             )
             if cs.branchpoints:
-                ui.write(
+                ui.writenoi18n(
                     b'Branchpoints: %s \n' % b', '.join(sorted(cs.branchpoints))
                 )
             if opts[b"parents"] and cs.parents:
@@ -1044,9 +1044,9 @@
                 if r:
                     ui.write((b'Ancestors: %s\n' % (b','.join(r))))
 
-            ui.write(b'Log:\n')
+            ui.writenoi18n(b'Log:\n')
             ui.write(b'%s\n\n' % cs.comment)
-            ui.write(b'Members: \n')
+            ui.writenoi18n(b'Members: \n')
             for f in cs.entries:
                 fn = f.file
                 if fn.startswith(opts[b"prefix"]):