Run 2to3's print fixer over some places that had been missed.
diff --git a/Mac/Modules/qd/qdscan.py b/Mac/Modules/qd/qdscan.py
index c601b0e..9c52f14 100644
--- a/Mac/Modules/qd/qdscan.py
+++ b/Mac/Modules/qd/qdscan.py
@@ -28,7 +28,7 @@
except IOError:
pass
if have_extra:
- print "=== Copying QuickDrawText stuff into main files... ==="
+ print("=== Copying QuickDrawText stuff into main files... ===")
ifp = open("@qdgentext.py")
ofp = open("qdgen.py", "a")
ofp.write(ifp.read())
@@ -40,11 +40,11 @@
ifp.close()
ofp.close()
- print "=== Testing definitions output code ==="
+ print("=== Testing definitions output code ===")
exec(open(defsoutput).read(), {}, {})
- print "=== Done scanning and generating, now importing the generated code... ==="
+ print("=== Done scanning and generating, now importing the generated code... ===")
import qdsupport
- print "=== Done. It's up to you to compile it now! ==="
+ print("=== Done. It's up to you to compile it now! ===")
class MyScanner(Scanner):