Plugins/VcsPlugins/vcsMercurial/hg.py

changeset 3349
2a034a7f1f54
parent 3328
15aaa8d3a840
child 3353
ddc966a494b0
diff -r 39f9273ebd61 -r 2a034a7f1f54 Plugins/VcsPlugins/vcsMercurial/hg.py
--- a/Plugins/VcsPlugins/vcsMercurial/hg.py	Sun Mar 09 12:16:00 2014 +0100
+++ b/Plugins/VcsPlugins/vcsMercurial/hg.py	Sun Mar 09 17:06:40 2014 +0100
@@ -1848,12 +1848,12 @@
         self.sbsDiff.show()
         self.sbsDiff.compare(output1, output2, name1, name2)
     
-    def hgLogBrowser(self, path, isFile=False):
+    def vcsLogBrowser(self, name, isFile=False):
         """
         Public method used to browse the log of a file/directory from the
         Mercurial repository.
         
-        @param path file/directory name to show the log of (string)
+        @param name file/directory name to show the log of (string)
         @keyparam isFile flag indicating log for a file is to be shown
             (boolean)
         """
@@ -1861,7 +1861,7 @@
             from .HgLogBrowserDialog import HgLogBrowserDialog
             self.logBrowser = HgLogBrowserDialog(self)
         self.logBrowser.show()
-        self.logBrowser.start(path, isFile=isFile)
+        self.logBrowser.start(name, isFile=isFile)
     
     def hgIncoming(self, name):
         """

eric ide

mercurial