diff options
author | csabella <cheryl.sabella@gmail.com> | 2017-06-24 00:00:58 (GMT) |
---|---|---|
committer | terryjreedy <tjreedy@udel.edu> | 2017-06-24 00:00:58 (GMT) |
commit | 18ede062581edb7e8d359d02cd3419466114cf5a (patch) | |
tree | 68ff109a64d1518f0db354862d8337fca28bc482 /Lib/idlelib/macosx.py | |
parent | 8f525882fa43209d52afdb99753de2f5111d7433 (diff) | |
download | cpython-18ede062581edb7e8d359d02cd3419466114cf5a.zip cpython-18ede062581edb7e8d359d02cd3419466114cf5a.tar.gz cpython-18ede062581edb7e8d359d02cd3419466114cf5a.tar.bz2 |
bpo-24813: IDLE: Add default title to help_about (#2366)
Patch by Cheryl Sabella.
Diffstat (limited to 'Lib/idlelib/macosx.py')
-rw-r--r-- | Lib/idlelib/macosx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/macosx.py b/Lib/idlelib/macosx.py index d4566cd..d85278a 100644 --- a/Lib/idlelib/macosx.py +++ b/Lib/idlelib/macosx.py @@ -165,7 +165,7 @@ def overrideRootMenu(root, flist): "Handle Help 'About IDLE' event." # Synchronize with editor.EditorWindow.about_dialog. from idlelib import help_about - help_about.AboutDialog(root, 'About IDLE') + help_about.AboutDialog(root) def config_dialog(event=None): "Handle Options 'Configure IDLE' event." |