##// END OF EJS Templates
convert: replace repr() by pycompat.byterepr() in cvsps.py (issue6789)
av6 -
r50799:f3e95e5a stable
parent child Browse files
Show More
@@ -686,7 +686,10 b' def createchangeset(ui, log, fuzz=60, me'
686
686
687 files = set()
687 files = set()
688 if len(changesets) % 100 == 0:
688 if len(changesets) % 100 == 0:
689 t = b'%d %s' % (len(changesets), repr(e.comment)[1:-1])
689 t = b'%d %s' % (
690 len(changesets),
691 pycompat.byterepr(e.comment)[2:-1],
692 )
690 ui.status(stringutil.ellipsis(t, 80) + b'\n')
693 ui.status(stringutil.ellipsis(t, 80) + b'\n')
691
694
692 c.entries.append(e)
695 c.entries.append(e)
General Comments 0
You need to be logged in to leave comments. Login now