From e6baa23c0872b81848761f163eb28ea79fad5738 Mon Sep 17 00:00:00 2001 From: staticfox Date: Sat, 21 May 2016 19:21:26 -0400 Subject: [PATCH] makepandacore: Add missing argument in exit reason --- makepanda/makepandacore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 80852a50b8..6ee5748d38 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -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")