diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-05 16:13:19 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-05 16:13:19 +0000 |
commit | 62442c295af58c0d98825cf3ab9a1ea3ea0ea438 (patch) | |
tree | 701d1968d8dd56c3576b9eef5d7d6da9082bffe8 | |
parent | fbd861bbd3532372c6c9160c5d14f17ff2c7de00 (diff) | |
download | cpython-git-62442c295af58c0d98825cf3ab9a1ea3ea0ea438.tar.gz |
Fix for bug #697546: don't auto-register the Python documentation
by putting the help book in an array. Somehow the fact that Python.app
(and, hence, pythonw) got an automatic help menu messed up Tkinter's
handling of the help menu.
-rw-r--r-- | Mac/OSXResources/app/Info.plist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/OSXResources/app/Info.plist b/Mac/OSXResources/app/Info.plist index 6022db7e39..d1b5eb9184 100644 --- a/Mac/OSXResources/app/Info.plist +++ b/Mac/OSXResources/app/Info.plist @@ -30,7 +30,9 @@ <string>2.3</string> <key>CFBundleHelpBookFolder</key> - <string>Documentation</string> + <array> + <string>Documentation</string> + </array> <key>CFBundleHelpBookName</key> <string>Python Help</string> <key>CFBundleHelpTOCFile</key> |