[Python-checkins] python/dist/src/Lib/distutils msvccompiler.py, 1.63, 1.64

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sun Nov 28 02:10:04 CET 2004


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16026/Lib/distutils

Modified Files:
	msvccompiler.py 
Log Message:
Whitespace normalization.


Index: msvccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/msvccompiler.py,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- msvccompiler.py	24 Nov 2004 22:31:11 -0000	1.63
+++ msvccompiler.py	28 Nov 2004 01:10:01 -0000	1.64
@@ -124,12 +124,12 @@
         self.set_macro("VSInstallDir", vsbase + r"\Setup\VS", "productdir")
         net = r"Software\Microsoft\.NETFramework"
         self.set_macro("FrameworkDir", net, "installroot")
-	try:
-	    if version > 7.0:
-		self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv1.1")
-	    else:
-		self.set_macro("FrameworkSDKDir", net, "sdkinstallroot")
-	except KeyError, exc: #
+        try:
+            if version > 7.0:
+                self.set_macro("FrameworkSDKDir", net, "sdkinstallrootv1.1")
+            else:
+                self.set_macro("FrameworkSDKDir", net, "sdkinstallroot")
+        except KeyError, exc: #
             raise DistutilsPlatformError, \
                   ("The .NET Framework SDK needs to be installed before "
                    "building extensions for Python.")



More information about the Python-checkins mailing list