summaryrefslogtreecommitdiff
path: root/tests/qa.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/qa.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/qa.py')
-rwxr-xr-xtests/qa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qa.py b/tests/qa.py
index eb11946..f50e3ed 100755
--- a/tests/qa.py
+++ b/tests/qa.py
@@ -22,5 +22,5 @@ import commands
import signal
signal.signal(signal.SIGCHLD, signal.SIG_IGN)
-print commands.getoutput('/bin/ls -l')
+print(commands.getoutput('/bin/ls -l'))