diff options
author | Mark Roseman <mark@markroseman.com> | 2017-06-28 02:42:10 (GMT) |
---|---|---|
committer | terryjreedy <tjreedy@udel.edu> | 2017-06-28 02:42:10 (GMT) |
commit | 592eda123329bb5ce2bffcbe3701be6b909f1b2a (patch) | |
tree | 139c7acc4b516d4a90676ef8525d382d53e2ea12 | |
parent | fae2c3538ecbcdd37b6eca891c0815d2093c39e3 (diff) | |
download | cpython-592eda123329bb5ce2bffcbe3701be6b909f1b2a.zip cpython-592eda123329bb5ce2bffcbe3701be6b909f1b2a.tar.gz cpython-592eda123329bb5ce2bffcbe3701be6b909f1b2a.tar.bz2 |
bpo-24813: IDLE tagline is Integrated Development and Learning Environment (#2451)
Patch by Mark Roseman
-rw-r--r-- | Lib/idlelib/help_about.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/help_about.py b/Lib/idlelib/help_about.py index 967f034..679ac78 100644 --- a/Lib/idlelib/help_about.py +++ b/Lib/idlelib/help_about.py @@ -81,7 +81,7 @@ class AboutDialog(Toplevel): logo = Label(frame_background, image=self.icon_image, bg=self.bg) logo.grid(row=0, column=0, sticky=W, rowspan=2, padx=10, pady=10) - byline_text = "Python's Integrated DeveLopment Environment" + 5*'\n' + byline_text = "Python's Integrated Development\nand Learning Environment" + 5*'\n' byline = Label(frame_background, text=byline_text, justify=LEFT, fg=self.fg, bg=self.bg) byline.grid(row=2, column=0, sticky=W, columnspan=3, padx=10, pady=5) |