author | Matt Harbison <matt_harbison@yahoo.com> |
Wed, 17 Oct 2018 21:54:49 -0400 | |
changeset 40350 | 633da7139e4a |
parent 40349 | 1524c305377f |
child 40351 | b1eb19301c94 |
--- a/tests/test-import-context.t Mon Oct 15 22:02:10 2018 -0400 +++ b/tests/test-import-context.t Wed Oct 17 21:54:49 2018 -0400 @@ -19,7 +19,10 @@ > EOF $ cat > cat.py <<EOF > import sys - > sys.stdout.write(repr(open(sys.argv[1], 'rb').read()) + '\n') + > from mercurial import pycompat + > from mercurial.utils import stringutil + > pycompat.stdout.write(b'%s\n' + > % stringutil.pprint(open(sys.argv[1], 'rb').read())) > EOF Initialize the test repository