diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-01-23 04:13:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 04:13:29 (GMT) |
commit | 3b7618809df647574e8aad4c2d869a1d55df147c (patch) | |
tree | e35f6419777dc616456628d2363aab0655d97665 /Lib/idlelib/configdialog.py | |
parent | fdb21609d944941f0732df72dc3d07a7a9a7efea (diff) | |
download | cpython-3b7618809df647574e8aad4c2d869a1d55df147c.zip cpython-3b7618809df647574e8aad4c2d869a1d55df147c.tar.gz cpython-3b7618809df647574e8aad4c2d869a1d55df147c.tar.bz2 |
bpo-39050: The Help button in IDLE's config menu works again (GH-17611)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
(cherry picked from commit 2e43b64c94e49f7133b9c26e84c9519935c49063)
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-rw-r--r-- | Lib/idlelib/configdialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index aaf319b..0e007b5 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -210,7 +210,7 @@ class ConfigDialog(Toplevel): """ page = self.note.tab(self.note.select(), option='text').strip() view_text(self, title='Help for IDLE preferences', - text=help_common+help_pages.get(page, '')) + contents=help_common+help_pages.get(page, '')) def deactivate_current_config(self): """Remove current key bindings. |