Browse Source

Make build system compatible with Python 3K

sole 13 năm trước cách đây
mục cha
commit
5903cdfe87
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      utils/build.py

+ 3 - 3
utils/build.py

@@ -454,9 +454,9 @@ def buildLib(files, debug, minified, filename, fname_externs):
 
 	filename = filename + '.js'
 
-	print "=" * 40
-	print "Compiling", filename
-	print "=" * 40
+	print("=" * 40)
+	print("Compiling", filename)
+	print("=" * 40)
 
 	if minified:
 		text = compress(text, fname_externs)