Skip to content

Commit eb16959

Browse files
authored
Update print statements to be compatible with Python 3 (#7268)
Update the print statements to be compatible with Python 3
1 parent b7b532b commit eb16959

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/clang/utils/check_cfc/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
import platform
99
import sys
1010
if platform.system() == 'Windows':
11-
print "Could not find py2exe. Please install then run setup.py py2exe."
11+
print("Could not find py2exe. Please install then run setup.py py2exe.")
1212
raise
1313
else:
14-
print "setup.py only required on Windows."
14+
print("setup.py only required on Windows.")
1515
sys.exit(1)
1616

1717
setup(

0 commit comments

Comments
 (0)