--- a/src/eric7/QScintilla/ShellWindow.py Tue Dec 06 16:00:06 2022 +0100 +++ b/src/eric7/QScintilla/ShellWindow.py Tue Dec 06 16:04:58 2022 +0100 @@ -228,7 +228,7 @@ self.exitAct.setStatusTip(self.tr("Quit the Shell")) self.exitAct.setWhatsThis( self.tr( - """<b>Quit the Shell</b>""" """<p>This quits the Shell window.</p>""" + """<b>Quit the Shell</b><p>This quits the Shell window.</p>""" ) ) self.exitAct.triggered.connect(self.quit) @@ -345,7 +345,7 @@ ) self.cutAct.setWhatsThis( self.tr( - """<b>Cut</b>""" """<p>Cut the selected text to the clipboard.</p>""" + """<b>Cut</b><p>Cut the selected text to the clipboard.</p>""" ) ) self.cutAct.triggered.connect(self.__shell.cut) @@ -369,7 +369,7 @@ ) self.copyAct.setWhatsThis( self.tr( - """<b>Copy</b>""" """<p>Copy the selected text to the clipboard.</p>""" + """<b>Copy</b><p>Copy the selected text to the clipboard.</p>""" ) ) self.copyAct.triggered.connect(self.__shell.copy) @@ -415,7 +415,7 @@ QCoreApplication.translate("ViewManager", "Clear all text") ) self.clearAct.setWhatsThis( - self.tr("""<b>Clear</b>""" """<p>Delete all text.</p>""") + self.tr("""<b>Clear</b><p>Delete all text.</p>""") ) self.clearAct.triggered.connect(self.__shell.clear) self.editActions.append(self.clearAct)