summaryrefslogtreecommitdiff
path: root/Lib/idlelib/searchbase.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-05-31 04:26:35 -0400
committerGitHub <noreply@github.com>2019-05-31 04:26:35 -0400
commitba0430211f5101c9d748d72b03926ca79c5252a8 (patch)
tree9c95d46313ed986fd5f99eba803d2f7fa521d732 /Lib/idlelib/searchbase.py
parent14a0e16c8805f7ba7c98132ead815dcfdf0e9d33 (diff)
downloadcpython-git-ba0430211f5101c9d748d72b03926ca79c5252a8.tar.gz
IDLE - Capitalize search dialogs' 'Close' button label. (#13691)
It seems to be the only widget label not capitalized.
Diffstat (limited to 'Lib/idlelib/searchbase.py')
-rw-r--r--Lib/idlelib/searchbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/searchbase.py b/Lib/idlelib/searchbase.py
index f0e3d6f14b..74ba853851 100644
--- a/Lib/idlelib/searchbase.py
+++ b/Lib/idlelib/searchbase.py
@@ -172,7 +172,7 @@ class SearchDialogBase:
f = self.buttonframe = Frame(self.top)
f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
- b = self.make_button("close", self.close)
+ b = self.make_button("Close", self.close)
b.lower()