diff tests/test-revert.t @ 39740:e0a7cfa9323f

py3: use print as a function in tests/test-revert.t This makes the test work on Python 3. Differential Revision: https://phab.mercurial-scm.org/D4687
author Pulkit Goyal <pulkit@yandex-team.ru>
date Fri, 21 Sep 2018 03:16:38 +0530
parents 5abc47d4ca6b
children 4d4842445afc
line wrap: on
line diff
--- a/tests/test-revert.t	Wed Sep 19 23:11:07 2018 +0900
+++ b/tests/test-revert.t	Fri Sep 21 03:16:38 2018 +0530
@@ -532,6 +532,7 @@
 
   $ cat << EOF >> dircontent.py
   > # generate a simple text view of the directory for easy comparison
+  > from __future__ import print_function
   > import os
   > files = os.listdir('.')
   > files.sort()
@@ -539,7 +540,7 @@
   >     if os.path.isdir(filename):
   >         continue
   >     content = open(filename).read()
-  >     print '%-6s %s' % (content.strip(), filename)
+  >     print('%-6s %s' % (content.strip(), filename))
   > EOF
 
 Generate appropriate repo state