Skip to content
Snippets Groups Projects
Commit 633da713 authored by Matt Harbison's avatar Matt Harbison
Browse files

py3: fix test-import-context.t

parent 1524c305
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment