summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/GrepDialog.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-07-13 21:27:41 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-07-13 21:27:41 (GMT)
commite0a9a0156ec7c1cc917018027094d38f2dbf568d (patch)
treef9b9d7e44e8945a0e515eadc111000b50b5f2ab6 /Lib/idlelib/GrepDialog.py
parent55966193f2dbb03d03675bf50baef29d3b0b7520 (diff)
parent5283c4e108bf541ab43cb89e58745f20b4d559b4 (diff)
downloadcpython-e0a9a0156ec7c1cc917018027094d38f2dbf568d.zip
cpython-e0a9a0156ec7c1cc917018027094d38f2dbf568d.tar.gz
cpython-e0a9a0156ec7c1cc917018027094d38f2dbf568d.tar.bz2
Merge with 3.4
Diffstat (limited to 'Lib/idlelib/GrepDialog.py')
-rw-r--r--Lib/idlelib/GrepDialog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/GrepDialog.py b/Lib/idlelib/GrepDialog.py
index 38b6480..5d22a9e 100644
--- a/Lib/idlelib/GrepDialog.py
+++ b/Lib/idlelib/GrepDialog.py
@@ -45,10 +45,10 @@ class GrepDialog(SearchDialogBase):
def create_entries(self):
SearchDialogBase.create_entries(self)
- self.globent = self.make_entry("In files:", self.globvar)
+ self.globent = self.make_entry("In files:", self.globvar)[0]
def create_other_buttons(self):
- f = self.make_frame()
+ f = self.make_frame()[0]
btn = Checkbutton(f, anchor="w",
variable=self.recvar,