]> git.ipfire.org Git - thirdparty/Python/cpython.git/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:35 +0000 (00:34 +0000)
committerTrent Mick <trentm@activestate.com>
Tue, 25 Apr 2006 00:34:35 +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 9758dd6c356d5b5515a84f60e5c7cd6a33098ea8..46e2cd31af384f3f9144f05ce69bf4f08afb4ecd 100644 (file)
@@ -580,7 +580,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):