summaryrefslogtreecommitdiff
path: root/Lib/distutils/msvccompiler.py
diff options
context:
space:
mode:
authorTrent Mick <trentm@activestate.com>2006-04-25 00:34:50 +0000
committerTrent Mick <trentm@activestate.com>2006-04-25 00:34:50 +0000
commitf31e8816bd4e55e80cfc13096eb8554fd77c093f (patch)
tree3ef8068e48c374978748ffc079e659cca96ad4c0 /Lib/distutils/msvccompiler.py
parentc4dc03bd30db9fbc2334afd6ec4e551630ae9e7c (diff)
downloadcpython-f31e8816bd4e55e80cfc13096eb8554fd77c093f.tar.gz
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.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r--Lib/distutils/msvccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py
index f88f36526c..d24d0ac6e0 100644
--- a/Lib/distutils/msvccompiler.py
+++ b/Lib/distutils/msvccompiler.py
@@ -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):