diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-13 21:27:41 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-13 21:27:41 (GMT) |
commit | e0a9a0156ec7c1cc917018027094d38f2dbf568d (patch) | |
tree | f9b9d7e44e8945a0e515eadc111000b50b5f2ab6 /Lib/idlelib/GrepDialog.py | |
parent | 55966193f2dbb03d03675bf50baef29d3b0b7520 (diff) | |
parent | 5283c4e108bf541ab43cb89e58745f20b4d559b4 (diff) | |
download | cpython-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.py | 4 |
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, |