]> granicus.if.org Git - python/commitdiff
Put break at correct level so *all* root HKEYs acutally get checked for
authorTrent Mick <trentm@activestate.com>
Tue, 25 Apr 2006 00:34:50 +0000 (00:34 +0000)
committerTrent Mick <trentm@activestate.com>
Tue, 25 Apr 2006 00:34:50 +0000 (00:34 +0000)
an installed VC6. Otherwise only the first such tree gets checked and this
warning doesn't get displayed.

Lib/distutils/msvccompiler.py

index f88f36526c5df184be9f8094d0fd9af461ba4bde..d24d0ac6e0afe8ffadb7fe4807ff8481f3589498 100644 (file)
@@ -618,7 +618,7 @@ class MSVCCompiler (CCompiler) :
                         "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):