summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-03-28 07:51:51 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-03-28 07:51:51 (GMT)
commitdf511798e463195e2b97bfa8cea4cc487d690e50 (patch)
tree5d939e38d27cdf2bd4a484a21c6a2c43e9ceb1bd /Tools
parentb82cb8dcd513d49dc674f6973c984628c14cf045 (diff)
downloadcpython-df511798e463195e2b97bfa8cea4cc487d690e50.zip
cpython-df511798e463195e2b97bfa8cea4cc487d690e50.tar.gz
cpython-df511798e463195e2b97bfa8cea4cc487d690e50.tar.bz2
Correct case in test for Windows 9X.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/msi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
index 50bec04..c4da971 100644
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -496,7 +496,7 @@ def add_ui(db):
c = exit_dialog.text("warning", 135, 200, 220, 40, 0x30003,
"{\\VerdanaRed9}Warning: Python 2.5.x is the last "
"Python release for Windows 9x.")
- c.condition("Hide", "NOT Version9x")
+ c.condition("Hide", "NOT Version9X")
exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
"Click the Finish button to exit the Installer.")