[Python-checkins] r45699 - python/branches/release24-maint/Lib/distutils/msvccompiler.py
trent.mick
python-checkins at python.org
Tue Apr 25 02:34:36 CEST 2006
Author: trent.mick
Date: Tue Apr 25 02:34:35 2006
New Revision: 45699
Modified:
python/branches/release24-maint/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/branches/release24-maint/Lib/distutils/msvccompiler.py
==============================================================================
--- python/branches/release24-maint/Lib/distutils/msvccompiler.py (original)
+++ python/branches/release24-maint/Lib/distutils/msvccompiler.py Tue Apr 25 02:34:35 2006
@@ -580,7 +580,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