diff options
author | Trent Mick <trentm@activestate.com> | 2006-04-25 00:34:50 (GMT) |
---|---|---|
committer | Trent Mick <trentm@activestate.com> | 2006-04-25 00:34:50 (GMT) |
commit | e96b229d2ad3944592b1889bb277388fec086049 (patch) | |
tree | 7dfef9a9f3e2154bea077fc92a08ada7874499b4 /Lib/distutils/msvccompiler.py | |
parent | be635cd744069216e3117d2c217d6b4896db0dcb (diff) | |
download | cpython-e96b229d2ad3944592b1889bb277388fec086049.zip cpython-e96b229d2ad3944592b1889bb277388fec086049.tar.gz cpython-e96b229d2ad3944592b1889bb277388fec086049.tar.bz2 |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index f88f365..d24d0ac 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): |