소스 검색

Make build system compatible with Python 3K

sole 13 년 전
부모
커밋
5903cdfe87
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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)