##// END OF EJS Templates
cvsps: convert encoding name to sysstr...
Augie Fackler -
r37937:120c343c default
parent child Browse files
Show More
@@ -510,7 +510,8 b' def createlog(ui, directory=None, root="'
510 510 comment = entry.comment
511 511 for e in encodings:
512 512 try:
513 entry.comment = comment.decode(e).encode('utf-8')
513 entry.comment = comment.decode(
514 pycompat.sysstr(e)).encode('utf-8')
514 515 if ui.debugflag:
515 516 ui.debug("transcoding by %s: %s of %s\n" %
516 517 (e, revstr(entry.revision), entry.file))
General Comments 0
You need to be logged in to leave comments. Login now