diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-06-04 19:15:32 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-06-04 19:15:32 (GMT) |
commit | 16b2a5e0a928bb1d49598aa34bf1bb5db7071863 (patch) | |
tree | 3ed2a9ebf737f61c5ea097695a59213c1514d099 /Tools | |
parent | 5aafc17405127b728c66b2e7e516c1c9c4d660cb (diff) | |
download | cpython-16b2a5e0a928bb1d49598aa34bf1bb5db7071863.zip cpython-16b2a5e0a928bb1d49598aa34bf1bb5db7071863.tar.gz cpython-16b2a5e0a928bb1d49598aa34bf1bb5db7071863.tar.bz2 |
Display installer warning that Windows 2000 won't
be supported in future releases.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index a0d70de..d50b1aa 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -503,9 +503,9 @@ def add_ui(db): " would still be Python for DOS.") 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") + "{\\VerdanaRed9}Warning: Python 2.7.x is the last " + "Python release for Windows 2000.") + c.condition("Hide", "VersionNT > 500") exit_dialog.text("Description", 135, 235, 220, 20, 0x30003, "Click the Finish button to exit the Installer.") |