makepandacore: Add missing argument in exit reason

This commit is contained in:
staticfox 2016-05-21 19:21:26 -04:00
parent 9a562d1a1c
commit e6baa23c08
No known key found for this signature in database
GPG Key ID: 12E27B3B33FF66A8

View File

@ -2304,7 +2304,7 @@ def SetupVisualStudioEnviron():
binpath = SDK["VISUALSTUDIO"] + "VC\\bin\\" + bindir
if not os.path.isdir(binpath):
exit("Couldn't find compilers in %s. You may need to install the Windows SDK 7.1 and the Visual C++ 2010 SP1 Compiler Update for Windows SDK 7.1.")
exit("Couldn't find compilers in %s. You may need to install the Windows SDK 7.1 and the Visual C++ 2010 SP1 Compiler Update for Windows SDK 7.1." % binpath)
AddToPathEnv("PATH", binpath)
AddToPathEnv("PATH", SDK["VISUALSTUDIO"] + "Common7\\IDE")