--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Tue Dec 06 16:00:06 2022 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py Tue Dec 06 16:04:58 2022 +0100 @@ -447,7 +447,7 @@ self.hgTipAct.setStatusTip(self.tr("Show the tip of the repository")) self.hgTipAct.setWhatsThis( self.tr( - """<b>Show tip</b>""" """<p>This shows the tip of the repository.</p>""" + """<b>Show tip</b><p>This shows the tip of the repository.</p>""" ) ) self.hgTipAct.triggered.connect(self.__hgTip) @@ -650,7 +650,7 @@ self.hgTagListAct.setStatusTip(self.tr("List tags of the project")) self.hgTagListAct.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.hgTagListAct.triggered.connect(self.__hgTagList) @@ -1103,7 +1103,7 @@ ) self.hgBisectSkipAct.setStatusTip(self.tr("Skip a selectable changeset")) self.hgBisectSkipAct.setWhatsThis( - self.tr("""<b>Skip</b>""" """<p>This skips a selectable changeset.</p>""") + self.tr("""<b>Skip</b><p>This skips a selectable changeset.</p>""") ) self.hgBisectSkipAct.triggered.connect(self.__hgBisectSkip) self.actions.append(self.hgBisectSkipAct) @@ -1113,7 +1113,7 @@ ) self.hgBisectResetAct.setStatusTip(self.tr("Reset the bisect search data")) self.hgBisectResetAct.setWhatsThis( - self.tr("""<b>Reset</b>""" """<p>This resets the bisect search data.</p>""") + self.tr("""<b>Reset</b><p>This resets the bisect search data.</p>""") ) self.hgBisectResetAct.triggered.connect(self.__hgBisectReset) self.actions.append(self.hgBisectResetAct) @@ -1339,7 +1339,7 @@ self.hgAddSubrepoAct.setStatusTip(self.tr("Add a sub-repository")) self.hgAddSubrepoAct.setWhatsThis( self.tr( - """<b>Add...</b>""" """<p>Add a sub-repository to the project.</p>""" + """<b>Add...</b><p>Add a sub-repository to the project.</p>""" ) ) self.hgAddSubrepoAct.triggered.connect(self.__hgAddSubrepository)