diff options
author | Christian Heimes <christian@cheimes.de> | 2008-11-28 11:05:17 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-11-28 11:05:17 (GMT) |
commit | 94e0772989073d207855a787a59f863f79230771 (patch) | |
tree | 1e2318e9a70647449a5bb238449d68e127f5e0bb /Lib | |
parent | a58ea4dcf25d2b1b07b76096b5dd089609b1b6ea (diff) | |
download | cpython-94e0772989073d207855a787a59f863f79230771.zip cpython-94e0772989073d207855a787a59f863f79230771.tar.gz cpython-94e0772989073d207855a787a59f863f79230771.tar.bz2 |
Merged revisions 67414 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r67414 | christian.heimes | 2008-11-28 12:02:32 +0100 (Fri, 28 Nov 2008) | 1 line
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 465013d..eced052 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 |