summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/ReplaceDialog.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-07-13 21:27:26 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-07-13 21:27:26 (GMT)
commit5283c4e108bf541ab43cb89e58745f20b4d559b4 (patch)
tree3ebd31118d205b09c513d50c4a5bcf71ea9671ca /Lib/idlelib/ReplaceDialog.py
parent5d0d2e6ed6b6ca99d7aa1f9a5ff9c4b0fa545f76 (diff)
downloadcpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.zip
cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.tar.gz
cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.tar.bz2
Issue #18592: Method return signature changes made to SearchDialogBase for
test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings are improved. Initial patch by Saimadhav Heblikar
Diffstat (limited to 'Lib/idlelib/ReplaceDialog.py')
-rw-r--r--Lib/idlelib/ReplaceDialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/ReplaceDialog.py b/Lib/idlelib/ReplaceDialog.py
index ffa97a2..fc8b80f 100644
--- a/Lib/idlelib/ReplaceDialog.py
+++ b/Lib/idlelib/ReplaceDialog.py
@@ -40,7 +40,7 @@ class ReplaceDialog(SearchDialogBase):
def create_entries(self):
SearchDialogBase.create_entries(self)
- self.replent = self.make_entry("Replace with:", self.replvar)
+ self.replent = self.make_entry("Replace with:", self.replvar)[0]
def create_command_buttons(self):
SearchDialogBase.create_command_buttons(self)