changeset 45055 | 4c1b4805db57 |
parent 43659 | 99e231afc29c |
child 45830 | c102b704edb5 |
--- a/contrib/undumprevlog Mon Jul 06 10:30:55 2020 +0200 +++ b/contrib/undumprevlog Mon Jul 06 17:44:25 2020 +0200 @@ -9,7 +9,6 @@ from mercurial import ( encoding, node, - pycompat, revlog, transaction, vfs as vfsmod, @@ -30,7 +29,7 @@ if l.startswith("file:"): f = encoding.strtolocal(l[6:-1]) r = revlog.revlog(opener, f) - pycompat.stdout.write(b'%s\n' % f) + procutil.stdout.write(b'%s\n' % f) elif l.startswith("node:"): n = node.bin(l[6:-1]) elif l.startswith("linkrev:"):