make print statements python 3 compatible

This commit is contained in:
jacob1
2017-10-03 21:14:16 -04:00
parent 17c9340434
commit 1c275e943f
2 changed files with 9 additions and 9 deletions

View File

@@ -9,14 +9,14 @@ if GetOption('clean'):
try:
shutil.rmtree(".sconf_temp/")
except:
print "couldn't remove .sconf_temp/"
print("couldn't remove .sconf_temp/")
try:
shutil.rmtree("generated/")
except:
print "couldn't remove generated/"
print("couldn't remove generated/")
try:
os.remove(".sconsign.dblite")
except:
print "couldn't remove .sconsign.dblite"
print("couldn't remove .sconsign.dblite")