[3.6] bpo-24813: IDLE tagline is Integrated Development and Learning Environment (GH-2451) (#2461)

Patch by Mark Roseman
(cherry picked from commit 592eda1)
This commit is contained in:
terryjreedy 2017-06-27 23:02:38 -04:00 committed by GitHub
parent af68382f68
commit 413c0a92bc
1 changed files with 1 additions and 1 deletions

View File

@ -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)