hgext/convert/cvsps.py
changeset 37887 dd071b34e60b
parent 37886 fe148d7544a4
child 37889 d4aad0dd69ed
--- a/hgext/convert/cvsps.py	Fri Apr 27 01:24:04 2018 -0400
+++ b/hgext/convert/cvsps.py	Fri Apr 27 01:26:23 2018 -0400
@@ -941,7 +941,8 @@
                 if fn.startswith(opts["prefix"]):
                     fn = fn[len(opts["prefix"]):]
                 ui.write('\t%s:%s->%s%s \n' % (
-                        fn, '.'.join([str(x) for x in f.parent]) or 'INITIAL',
+                        fn,
+                        '.'.join([b"%d" % x for x in f.parent]) or 'INITIAL',
                         '.'.join([(b"%d" % x) for x in f.revision]),
                         ['', '(DEAD)'][f.dead]))
             ui.write('\n')