diff -r 635b6c5a36e1 -r be9f8e7e42e0 src/eric7/QScintilla/ShellWindow.py --- a/src/eric7/QScintilla/ShellWindow.py Tue Dec 06 16:57:54 2022 +0100 +++ b/src/eric7/QScintilla/ShellWindow.py Tue Dec 06 17:35:41 2022 +0100 @@ -227,9 +227,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>""" - ) + self.tr("""<b>Quit the Shell</b><p>This quits the Shell window.</p>""") ) self.exitAct.triggered.connect(self.quit) self.exitAct.setMenuRole(QAction.MenuRole.QuitRole) @@ -344,9 +342,7 @@ QCoreApplication.translate("ViewManager", "Cut the selection") ) self.cutAct.setWhatsThis( - self.tr( - """<b>Cut</b><p>Cut the selected text to the clipboard.</p>""" - ) + self.tr("""<b>Cut</b><p>Cut the selected text to the clipboard.</p>""") ) self.cutAct.triggered.connect(self.__shell.cut) self.editActions.append(self.cutAct) @@ -368,9 +364,7 @@ QCoreApplication.translate("ViewManager", "Copy the selection") ) self.copyAct.setWhatsThis( - self.tr( - """<b>Copy</b><p>Copy the selected text to the clipboard.</p>""" - ) + self.tr("""<b>Copy</b><p>Copy the selected text to the clipboard.</p>""") ) self.copyAct.triggered.connect(self.__shell.copy) self.editActions.append(self.copyAct) @@ -414,9 +408,7 @@ self.clearAct.setStatusTip( QCoreApplication.translate("ViewManager", "Clear all text") ) - self.clearAct.setWhatsThis( - self.tr("""<b>Clear</b><p>Delete all text.</p>""") - ) + self.clearAct.setWhatsThis(self.tr("""<b>Clear</b><p>Delete all text.</p>""")) self.clearAct.triggered.connect(self.__shell.clear) self.editActions.append(self.clearAct) @@ -871,11 +863,11 @@ act = EricAction( QCoreApplication.translate( "ViewManager", - "Extend selection to first visible character in document" " line", + "Extend selection to first visible character in document line", ), QCoreApplication.translate( "ViewManager", - "Extend selection to first visible character in document" " line", + "Extend selection to first visible character in document line", ), 0, 0,