diff -r dd54d33d21d2 -r 51aa6c6b66f7 eric6/E5Gui/E5TextInputDialog.py --- a/eric6/E5Gui/E5TextInputDialog.py Mon Oct 05 19:51:55 2020 +0200 +++ b/eric6/E5Gui/E5TextInputDialog.py Tue Oct 06 17:52:44 2020 +0200 @@ -136,7 +136,7 @@ dlg.setTextValue(text) dlg.setMinimumWidth(minimumWidth) - if dlg.exec_() == QDialog.Accepted: + if dlg.exec() == QDialog.Accepted: return True, dlg.textValue() else: return False, ""