diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-08-22 17:10:12 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-08-22 17:10:12 (GMT) |
commit | 2dd2a28802aebce15d945dcc28f4ce62e8b902d9 (patch) | |
tree | 323d339df0f6c673456c114e571134cf74e13431 /Tools | |
parent | e09bd93685d59fc115d2cfdbe29d6857161c7e2a (diff) | |
download | cpython-2dd2a28802aebce15d945dcc28f4ce62e8b902d9.zip cpython-2dd2a28802aebce15d945dcc28f4ce62e8b902d9.tar.gz cpython-2dd2a28802aebce15d945dcc28f4ce62e8b902d9.tar.bz2 |
Add acknowledgements to ExitDialog.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 60ce914..b831c27 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -419,7 +419,15 @@ def add_ui(db): exit_dialog.title("Completing the [ProductName] Installer") exit_dialog.back("< Back", "Finish", active = 0) exit_dialog.cancel("Cancel", "Back", active = 0) - exit_dialog.text("Description", 135, 115, 220, 20, 0x30003, + exit_dialog.text("Acknowledgements", 135, 95, 220, 120, 0x30003, + "Special Windows thanks to:\n" + " LettError, Erik van Blokland, for the Python for Windows graphic.\n" + " http://www.letterror.com/\n" + "\n" + " Mark Hammond, without whose years of freely shared Windows\n" + " expertise, Python for Windows would still be Python for DOS.") + + exit_dialog.text("Description", 135, 235, 220, 20, 0x30003, "Click the Finish button to exit the Installer.") c = exit_dialog.next("Finish", "Cancel", name="Finish") c.event("EndDialog", "Return") |