Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3008
7848489bcb92
child 3058
0a02c433f52d
--- a/Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py	Fri Oct 18 23:00:41 2013 +0200
@@ -56,8 +56,9 @@
         ))
         self.hgTransplantAct.setWhatsThis(self.trUtf8(
             """<b>Transplant Changesets</b>"""
-            """<p>This transplants changesets from another branch on top of the"""
-            """ current working directory with the log of the original changeset.</p>"""
+            """<p>This transplants changesets from another branch on top"""
+            """ of the current working directory with the log of the"""
+            """ original changeset.</p>"""
         ))
         self.hgTransplantAct.triggered[()].connect(self.__hgTransplant)
         self.actions.append(self.hgTransplantAct)
@@ -71,9 +72,11 @@
         ))
         self.hgTransplantContinueAct.setWhatsThis(self.trUtf8(
             """<b>Continue Transplant Session</b>"""
-            """<p>This continues the last transplant session after repair.</p>"""
+            """<p>This continues the last transplant session after"""
+            """ repair.</p>"""
         ))
-        self.hgTransplantContinueAct.triggered[()].connect(self.__hgTransplantContinue)
+        self.hgTransplantContinueAct.triggered[()].connect(
+            self.__hgTransplantContinue)
         self.actions.append(self.hgTransplantContinueAct)
     
     def initMenu(self, mainMenu):
@@ -87,7 +90,8 @@
         menu.setIcon(UI.PixmapCache.getIcon("vcsTransplant.png"))
         if self.vcs.version >= (2, 3):
             # transplant is deprecated as of Mercurial 2.3
-            menu.addAction(self.trUtf8("Transplant is deprecated")).setEnabled(False)
+            menu.addAction(
+                self.trUtf8("Transplant is deprecated")).setEnabled(False)
         else:
             menu.setTearOffEnabled(True)
             

eric ide

mercurial