eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py

changeset 7257
c4d0cac9b5c9
parent 7229
53054eb5b15a
child 7360
9190402e4505
diff -r 4ef3b78ebb4e -r c4d0cac9b5c9 eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py	Sat Sep 21 20:30:56 2019 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py	Sat Sep 21 22:03:03 2019 +0200
@@ -104,8 +104,8 @@
         """
         Private slot used to rebase changesets to another branch.
         """
-        shouldReopen = self.vcs.getExtensionObject("rebase")\
-            .hgRebase(self.project.getProjectPath())
+        shouldReopen = self.vcs.getExtensionObject("rebase").hgRebase(
+            self.project.getProjectPath())
         if shouldReopen:
             res = E5MessageBox.yesNo(
                 None,
@@ -119,8 +119,8 @@
         """
         Private slot used to continue the last rebase session after repair.
         """
-        shouldReopen = self.vcs.getExtensionObject("rebase")\
-            .hgRebaseContinue(self.project.getProjectPath())
+        shouldReopen = self.vcs.getExtensionObject("rebase").hgRebaseContinue(
+            self.project.getProjectPath())
         if shouldReopen:
             res = E5MessageBox.yesNo(
                 None,
@@ -134,8 +134,8 @@
         """
         Private slot used to abort the last rebase session.
         """
-        shouldReopen = self.vcs.getExtensionObject("rebase")\
-            .hgRebaseAbort(self.project.getProjectPath())
+        shouldReopen = self.vcs.getExtensionObject("rebase").hgRebaseAbort(
+            self.project.getProjectPath())
         if shouldReopen:
             res = E5MessageBox.yesNo(
                 None,

eric ide

mercurial