From: Martin v. Löwis Date: Tue, 28 Mar 2006 07:51:51 +0000 (+0000) Subject: Correct case in test for Windows 9X. X-Git-Tag: v2.5a0~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df511798e463195e2b97bfa8cea4cc487d690e50;p=python Correct case in test for Windows 9X. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 50bec04fde..c4da9712df 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.")