Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py

changeset 3034
7ce719013078
parent 3023
34ce20603bf7
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py	Sat Oct 19 12:28:12 2013 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py	Sat Oct 19 13:03:39 2013 +0200
@@ -589,7 +589,7 @@
         if self.__mq:
             self.vcs.vcsCommit(self.dname, "", mq=True)
         else:
-            names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \
+            names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                      for itm in self.__getCommitableItems()]
             if not names:
                 E5MessageBox.information(
@@ -629,7 +629,7 @@
         """
         Private slot to handle the Add context menu entry.
         """
-        names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \
+        names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getUnversionedItems()]
         if not names:
             E5MessageBox.information(
@@ -651,7 +651,7 @@
         """
         Private slot to handle the Remove context menu entry.
         """
-        names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \
+        names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getMissingItems()]
         if not names:
             E5MessageBox.information(
@@ -668,7 +668,7 @@
         """
         Private slot to handle the Revert context menu entry.
         """
-        names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \
+        names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getModifiedItems()]
         if not names:
             E5MessageBox.information(

eric ide

mercurial