diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-11-11 17:03:09 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-11-11 17:03:09 (GMT) |
commit | 30b51c9224b4adf5b1645dc496c297f76f6ccebd (patch) | |
tree | 02fac9f82bbcdfa101154e99326285558dd62169 /Tools | |
parent | 1e4b73fcf75a27c7e9020ecb8e58ffc274909e5a (diff) | |
download | cpython-30b51c9224b4adf5b1645dc496c297f76f6ccebd.zip cpython-30b51c9224b4adf5b1645dc496c297f76f6ccebd.tar.gz cpython-30b51c9224b4adf5b1645dc496c297f76f6ccebd.tar.bz2 |
Issue #27854: Include idlelib/help.html in 2.7 Windows installer.
Without this file, clicking Help => IDLE Help did nothing.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index b3a5b13..65ce5c1 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1076,6 +1076,7 @@ def add_files(db): if dir=='idlelib': lib.glob("*.def") lib.add_file("idle.bat") + lib.add_file("help.html") if dir=="Icons": lib.glob("*.gif") lib.glob("*.ico") |