--- a/src/eric7/Plugins/VcsPlugins/vcsGit/ProjectHelper.py Tue Dec 06 16:00:06 2022 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/ProjectHelper.py Tue Dec 06 16:04:58 2022 +0100 @@ -351,7 +351,7 @@ self.gitTagListAct.setStatusTip(self.tr("List tags of the project")) self.gitTagListAct.setWhatsThis( self.tr( - """<b>List tags</b>""" """<p>This lists the tags of the project.</p>""" + """<b>List tags</b><p>This lists the tags of the project.</p>""" ) ) self.gitTagListAct.triggered.connect(self.__gitTagList) @@ -696,7 +696,7 @@ ) self.gitRemoteAddAct.setStatusTip(self.tr("Add a remote repository")) self.gitRemoteAddAct.setWhatsThis( - self.tr("""<b>Add</b>""" """<p>This adds a remote repository.</p>""") + self.tr("""<b>Add</b><p>This adds a remote repository.</p>""") ) self.gitRemoteAddAct.triggered.connect(self.__gitAddRemote) self.actions.append(self.gitRemoteAddAct) @@ -706,7 +706,7 @@ ) self.gitRemoteRemoveAct.setStatusTip(self.tr("Remove a remote repository")) self.gitRemoteRemoveAct.setWhatsThis( - self.tr("""<b>Remove</b>""" """<p>This removes a remote repository.</p>""") + self.tr("""<b>Remove</b><p>This removes a remote repository.</p>""") ) self.gitRemoteRemoveAct.triggered.connect(self.__gitRemoveRemote) self.actions.append(self.gitRemoteRemoveAct) @@ -732,7 +732,7 @@ ) self.gitRemoteRenameAct.setStatusTip(self.tr("Rename a remote repository")) self.gitRemoteRenameAct.setWhatsThis( - self.tr("""<b>Rename</b>""" """<p>This renames a remote repository.</p>""") + self.tr("""<b>Rename</b><p>This renames a remote repository.</p>""") ) self.gitRemoteRenameAct.triggered.connect(self.__gitRenameRemote) self.actions.append(self.gitRemoteRenameAct) @@ -986,7 +986,7 @@ ) self.gitStashDropAct.setStatusTip(self.tr("Delete a stash")) self.gitStashDropAct.setWhatsThis( - self.tr("""<b>Delete</b>""" """<p>This deletes a stash.</p>""") + self.tr("""<b>Delete</b><p>This deletes a stash.</p>""") ) self.gitStashDropAct.triggered.connect(self.__gitStashDrop) self.actions.append(self.gitStashDropAct) @@ -1001,7 +1001,7 @@ ) self.gitStashClearAct.setStatusTip(self.tr("Delete all stashes")) self.gitStashClearAct.setWhatsThis( - self.tr("""<b>Delete All</b>""" """<p>This deletes all stashes.</p>""") + self.tr("""<b>Delete All</b><p>This deletes all stashes.</p>""") ) self.gitStashClearAct.triggered.connect(self.__gitStashClear) self.actions.append(self.gitStashClearAct) @@ -1279,7 +1279,7 @@ ) self.gitBisectStartAct.setStatusTip(self.tr("Start a bisect session")) self.gitBisectStartAct.setWhatsThis( - self.tr("""<b>Start</b>""" """<p>This starts a bisect session.</p>""") + self.tr("""<b>Start</b><p>This starts a bisect session.</p>""") ) self.gitBisectStartAct.triggered.connect(self.__gitBisectStart) self.actions.append(self.gitBisectStartAct) @@ -1348,7 +1348,7 @@ ) self.gitBisectSkipAct.setStatusTip(self.tr("Skip a selectable revision")) self.gitBisectSkipAct.setWhatsThis( - self.tr("""<b>Skip</b>""" """<p>This skips a selectable revision.</p>""") + self.tr("""<b>Skip</b><p>This skips a selectable revision.</p>""") ) self.gitBisectSkipAct.triggered.connect(self.__gitBisectSkip) self.actions.append(self.gitBisectSkipAct) @@ -1358,7 +1358,7 @@ ) self.gitBisectResetAct.setStatusTip(self.tr("Reset the bisect session")) self.gitBisectResetAct.setWhatsThis( - self.tr("""<b>Reset</b>""" """<p>This resets the bisect session.</p>""") + self.tr("""<b>Reset</b><p>This resets the bisect session.</p>""") ) self.gitBisectResetAct.triggered.connect(self.__gitBisectReset) self.actions.append(self.gitBisectResetAct)