--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py Tue Oct 18 17:48:03 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py Wed Oct 19 13:39:16 2022 +0200 @@ -1480,11 +1480,14 @@ allTagsBranchesList = None self.tagbranchList.start(tags, self.branchesList, self.allTagsBranchesList) - def hgAnnotate(self, name): + def hgAnnotate(self, name, skiplist=""): """ Public method to show the output of the hg annotate command. - @param name file name to show the annotations for (string) + @param name file name to show the annotations for + @type str + @param skiplist name of a skip list file + @type str """ if self.annotate is None: from .HgAnnotateDialog import HgAnnotateDialog @@ -1492,7 +1495,7 @@ self.annotate = HgAnnotateDialog(self) self.annotate.show() self.annotate.raise_() - self.annotate.start(name) + self.annotate.start(name, skiplist=skiplist) def hgExtendedDiff(self, name): """