tests/test-status-inprocess.py
changeset 28766 7f7cd44cd6d5
parent 28765 7779f9dfd938
child 28824 9d31582dd636
--- a/tests/test-status-inprocess.py	Mon Apr 04 05:19:35 2016 +0300
+++ b/tests/test-status-inprocess.py	Mon Apr 04 05:20:40 2016 +0300
@@ -1,5 +1,5 @@
 #!/usr/bin/python
-from __future__ import absolute_import
+from __future__ import absolute_import, print_function
 from mercurial.ui import (
     ui,
 )
@@ -14,7 +14,7 @@
 
 u = ui()
 
-print '% creating repo'
+print('% creating repo')
 repo = localrepository(u, '.', create=True)
 
 f = open('test.py', 'w')
@@ -23,13 +23,13 @@
 finally:
     f.close
 
-print '% add and commit'
+print('% add and commit')
 add(u, repo, 'test.py')
 commit(u, repo, message='*')
 status(u, repo, clean=True)
 
 
-print '% change'
+print('% change')
 f = open('test.py', 'w')
 try:
     f.write('bar\n')