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