# HG changeset patch # User Augie Fackler # Date 1524806783 14400 # Node ID dd071b34e60b4e560821109e36253be23e65b2ee # Parent fe148d7544a41b2fda2517a531372b6e194da67d cvsps: portably convert int to bytes Differential Revision: https://phab.mercurial-scm.org/D3485 diff -r fe148d7544a4 -r dd071b34e60b hgext/convert/cvsps.py --- 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')