##// END OF EJS Templates
py3: use print as a function in test-convert-git.t...
Pulkit Goyal -
r37598:1c3c9211 default
parent child Browse files
Show More
@@ -437,7 +437,7 b' convert binary file'
437 $ cd git-repo3-hg
437 $ cd git-repo3-hg
438 $ hg up -C
438 $ hg up -C
439 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
439 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
440 $ $PYTHON -c 'print len(open("b", "rb").read())'
440 $ $PYTHON -c 'from __future__ import print_function; print(len(open("b", "rb").read()))'
441 4096
441 4096
442 $ cd ..
442 $ cd ..
443
443
General Comments 0
You need to be logged in to leave comments. Login now