##// END OF EJS Templates
py3: use sys.stdout instead of print in test-mq-qpush-fail.t...
Pulkit Goyal -
r37542:5d81f1b7 default
parent child Browse files
Show More
@@ -31,7 +31,7 b' test qpush on empty series'
31 popping patch2
31 popping patch2
32 popping patch1
32 popping patch1
33 patch queue now empty
33 patch queue now empty
34 $ $PYTHON -c 'print "\xe9"' > message
34 $ $PYTHON -c 'import sys; getattr(sys.stdout, "buffer", sys.stdout).write(b"\xe9\n")' > message
35 $ cat .hg/patches/bad-patch >> message
35 $ cat .hg/patches/bad-patch >> message
36 $ mv message .hg/patches/bad-patch
36 $ mv message .hg/patches/bad-patch
37 $ cat > $TESTTMP/wrapplayback.py <<EOF
37 $ cat > $TESTTMP/wrapplayback.py <<EOF
General Comments 0
You need to be logged in to leave comments. Login now