Procházet zdrojové kódy

Make build system compatible with Python 3K

sole před 13 roky
rodič
revize
5903cdfe87
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  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)