summaryrefslogtreecommitdiff
path: root/tests/exit1.py
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2013-09-22 17:22:10 -0700
committerjquast <contact@jeffquast.com>2013-09-22 17:22:10 -0700
commitdb27d565f984da5fd39639e1004839928a0c4688 (patch)
tree58f691db32153abc7f9c2b9f2560fb25d9177636 /tests/exit1.py
parent011b050db75a4560883501c1240d96f98d45a1c9 (diff)
downloadpexpect-git-db27d565f984da5fd39639e1004839928a0c4688.tar.gz
use print() as a function
this is in preperation of removing the print_function from future feature for python2.5, so that the test cases can at least be begun to run ..
Diffstat (limited to 'tests/exit1.py')
-rwxr-xr-xtests/exit1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/exit1.py b/tests/exit1.py
index 4e07377..587b8ad 100755
--- a/tests/exit1.py
+++ b/tests/exit1.py
@@ -19,6 +19,6 @@ PEXPECT LICENSE
'''
import os, sys
-print "Hello"
+print("Hello")
sys.stdout.flush()
os._exit(1)