Fix more lingering print statements.
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 @@
 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