src/eric7/Plugins/VcsPlugins/vcsGit/git.py

branch
eric7
changeset 9421
989ee2535d59
parent 9413
80c06d472826
child 9473
3f23dbf37dbe
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/git.py	Tue Oct 18 17:48:03 2022 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/git.py	Wed Oct 19 13:39:16 2022 +0200
@@ -1546,11 +1546,14 @@
             self.checkVCSStatus()
         return True
 
-    def gitBlame(self, name):
+    def gitBlame(self, name, skiplist=""):
         """
         Public method to show the output of the git blame 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.blame is None:
             from .GitBlameDialog import GitBlameDialog
@@ -1558,7 +1561,7 @@
             self.blame = GitBlameDialog(self)
         self.blame.show()
         self.blame.raise_()
-        self.blame.start(name)
+        self.blame.start(name, skiplist=skiplist)
 
     def gitExtendedDiff(self, name):
         """

eric ide

mercurial