diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-30 18:50:25 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-30 18:50:25 (GMT) |
commit | b13c493ae51aac2acdf63b806e842b9ca4c058a9 (patch) | |
tree | 28ca1000458fab180f8a60001f6cc16e4ded0156 /PC/testpy.py | |
parent | fd51975886f655a1a8fbae0d78101413371169eb (diff) | |
download | cpython-b13c493ae51aac2acdf63b806e842b9ca4c058a9.zip cpython-b13c493ae51aac2acdf63b806e842b9ca4c058a9.tar.gz cpython-b13c493ae51aac2acdf63b806e842b9ca4c058a9.tar.bz2 |
Fix more lingering print statements.
Diffstat (limited to 'PC/testpy.py')
-rw-r--r-- | PC/testpy.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/PC/testpy.py b/PC/testpy.py index 78ad63c..36f9200 100644 --- a/PC/testpy.py +++ b/PC/testpy.py @@ -7,15 +7,15 @@ import sys try: import os except: - print """Could not import the standard "os" module. - Please check your PYTHONPATH environment variable.""" + print("""Could not import the standard "os" module. + Please check your PYTHONPATH environment variable.""") sys.exit(1) try: import symbol except: - print """Could not import the standard "symbol" module. If this is - a PC, you should add the dos_8x3 directory to your PYTHONPATH.""" + print("""Could not import the standard "symbol" module. If this is + a PC, you should add the dos_8x3 directory to your PYTHONPATH.""") sys.exit(1) import os |