[Python-checkins] r45700 - python/trunk/Lib/distutils/msvccompiler.py

trent.mick python-checkins at python.org
Tue Apr 25 02:34:50 CEST 2006


Author: trent.mick
Date: Tue Apr 25 02:34:50 2006
New Revision: 45700

Modified:
   python/trunk/Lib/distutils/msvccompiler.py
Log:
Put break at correct level so *all* root HKEYs acutally get checked for
an installed VC6. Otherwise only the first such tree gets checked and this
warning doesn't get displayed.


Modified: python/trunk/Lib/distutils/msvccompiler.py
==============================================================================
--- python/trunk/Lib/distutils/msvccompiler.py	(original)
+++ python/trunk/Lib/distutils/msvccompiler.py	Tue Apr 25 02:34:50 2006
@@ -618,7 +618,7 @@
                         "but the expected registry settings are not present.\n"
                         "You must at least run the Visual Studio GUI once "
                         "so that these entries are created.")
-                break
+                    break
         return []
 
     def set_path_env_var(self, name):


More information about the Python-checkins mailing list