--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py Sun Jul 17 15:33:33 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/hg.py Sun Jul 17 17:46:51 2022 +0200 @@ -2627,12 +2627,10 @@ self.checkVCSStatus() return res - def hgGraftContinue(self, path): + def hgGraftContinue(self): """ Public method to continue copying changesets from another branch. - @param path directory name of the project - @type str @return flag indicating that the project should be reread @rtype bool """ @@ -2640,24 +2638,20 @@ "--continue", self.tr("Copy Changesets (Continue)") ) - def hgGraftStop(self, path): + def hgGraftStop(self): """ Public method to stop an interrupted copying session. - @param path directory name of the project - @type str @return flag indicating that the project should be reread @rtype bool """ return self.__hgGraftSubCommand("--stop", self.tr("Copy Changesets (Stop)")) - def hgGraftAbort(self, path): + def hgGraftAbort(self): """ Public method to abort an interrupted copying session and perform a rollback. - @param path directory name of the project - @type str @return flag indicating that the project should be reread @rtype bool """