diff options
author | Christian Heimes <christian@cheimes.de> | 2008-11-28 11:02:32 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-11-28 11:02:32 (GMT) |
commit | aa67471227f40d96e99d8ac8c874cf3f36ee071b (patch) | |
tree | 476833ee29afb77023548301685231d8df737d29 /Lib | |
parent | 4de979153eed40f2a065165b2ad6c20f9768e199 (diff) | |
download | cpython-aa67471227f40d96e99d8ac8c874cf3f36ee071b.zip cpython-aa67471227f40d96e99d8ac8c874cf3f36ee071b.tar.gz cpython-aa67471227f40d96e99d8ac8c874cf3f36ee071b.tar.bz2 |
Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/msvc9compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py index 804f175..4f72e78 100644 --- a/Lib/distutils/msvc9compiler.py +++ b/Lib/distutils/msvc9compiler.py @@ -316,7 +316,7 @@ class MSVCCompiler(CCompiler) : self.__version = VERSION self.__root = r"Software\Microsoft\VisualStudio" # self.__macros = MACROS - self.__path = [] + self.__paths = [] # target platform (.plat_name is consistent with 'bdist') self.plat_name = None self.__arch = None # deprecated name |