##// END OF EJS Templates
py3: use print as a function in tests/test-revert.t...
Pulkit Goyal -
r39776:e0a7cfa9 default
parent child Browse files
Show More
@@ -471,6 +471,7 b' test-resolve.t'
471 471 test-revert-flags.t
472 472 test-revert-interactive.t
473 473 test-revert-unknown.t
474 test-revert.t
474 475 test-revisions.t
475 476 test-revlog-ancestry.py
476 477 test-revlog-group-emptyiter.t
@@ -532,6 +532,7 b' Script to make a simple text version of '
532 532
533 533 $ cat << EOF >> dircontent.py
534 534 > # generate a simple text view of the directory for easy comparison
535 > from __future__ import print_function
535 536 > import os
536 537 > files = os.listdir('.')
537 538 > files.sort()
@@ -539,7 +540,7 b' Script to make a simple text version of '
539 540 > if os.path.isdir(filename):
540 541 > continue
541 542 > content = open(filename).read()
542 > print '%-6s %s' % (content.strip(), filename)
543 > print('%-6s %s' % (content.strip(), filename))
543 544 > EOF
544 545
545 546 Generate appropriate repo state
General Comments 0
You need to be logged in to leave comments. Login now