diff options
Diffstat (limited to 'distutils2/compiler')
| -rw-r--r-- | distutils2/compiler/msvc9compiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distutils2/compiler/msvc9compiler.py b/distutils2/compiler/msvc9compiler.py index 25e832c..11a17d4 100644 --- a/distutils2/compiler/msvc9compiler.py +++ b/distutils2/compiler/msvc9compiler.py @@ -226,10 +226,10 @@ def find_vcvarsall(version): productdir = os.path.join(toolsdir, os.pardir, os.pardir, "VC") productdir = os.path.abspath(productdir) if not os.path.isdir(productdir): - logger.debug("%s is not a valid directory" % productdir) + logger.debug("%s is not a valid directory", productdir) return None else: - logger.debug("Env var %s is not set or invalid" % toolskey) + logger.debug("Env var %s is not set or invalid", toolskey) if not productdir: logger.debug("No productdir found") return None |
