git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6922 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2017-10-06 19:30:20 +00:00
parent 80bc65beb1
commit 55cb9be2be
4 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
Import('defenv')
print "Using Microsoft tools configuration (%s)" % defenv.get('MSVS_VERSION','<Default>')
print("Using Microsoft tools configuration (%s)" % defenv.get('MSVS_VERSION','<Default>'))
### flags
@ -100,7 +100,7 @@ if float(defenv['MSVS_VERSION'].replace('Exp','')) < 8.0:
except IOError:
continue
else:
print "*** Couldn't find a good version of libcp.lib"
print("*** Couldn't find a good version of libcp.lib")
Exit(2)
conf.Finish()