Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py

changeset 3020
542e97d4ecb3
parent 3009
bf5ae5d7477d
child 3025
67064c71df21
--- a/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py	Mon Oct 14 19:30:36 2013 +0200
@@ -389,7 +389,8 @@
         if not procStarted:
             self.inputGroup.setEnabled(False)
             self.inputGroup.hide()
-            E5MessageBox.critical(self,
+            E5MessageBox.critical(
+                self,
                 self.trUtf8('Process Generation Error'),
                 self.trUtf8(
                     'The process {0} could not be started. '
@@ -705,7 +706,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getCommitableItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Commit"),
                 self.trUtf8("""There are no entries selected to be"""
                             """ committed."""))
@@ -744,7 +746,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getUnversionedItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Add"),
                 self.trUtf8("""There are no unversioned entries"""
                             """ available/selected."""))
@@ -765,7 +768,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getModifiedItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Revert"),
                 self.trUtf8("""There are no uncommitted changes"""
                             """ available/selected."""))
@@ -788,7 +792,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getMissingItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Revert"),
                 self.trUtf8("""There are no missing entries"""
                             """ available/selected."""))
@@ -805,7 +810,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getModifiedItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Differences"),
                 self.trUtf8("""There are no uncommitted changes"""
                             """ available/selected."""))
@@ -825,13 +831,15 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getModifiedItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Side-by-Side Diff"),
                 self.trUtf8("""There are no uncommitted changes"""
                             """ available/selected."""))
             return
         elif len(names) > 1:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Side-by-Side Diff"),
                 self.trUtf8("""Only one file with uncommitted changes"""
                             """ must be selected."""))
@@ -846,7 +854,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getLockActionItems(self.unlockedIndicators)]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Lock"),
                 self.trUtf8("""There are no unlocked files"""
                             """ available/selected."""))
@@ -862,7 +871,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getLockActionItems(self.lockedIndicators)]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Unlock"),
                 self.trUtf8("""There are no locked files"""
                             """ available/selected."""))
@@ -879,7 +889,8 @@
                  for itm in self.__getLockActionItems(
                     self.stealBreakLockIndicators)]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Break Lock"),
                 self.trUtf8("""There are no locked files"""
                             """ available/selected."""))
@@ -896,7 +907,8 @@
                  for itm in self.__getLockActionItems(
                     self.stealBreakLockIndicators)]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Steal Lock"),
                 self.trUtf8("""There are no locked files"""
                             """ available/selected."""))
@@ -912,7 +924,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getNonChangelistItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Remove from Changelist"),
                 self.trUtf8(
                     """There are no files available/selected not """
@@ -930,7 +943,8 @@
         names = [os.path.join(self.dname, itm.text(self.__pathColumn))
                  for itm in self.__getChangelistItems()]
         if not names:
-            E5MessageBox.information(self,
+            E5MessageBox.information(
+                self,
                 self.trUtf8("Remove from Changelist"),
                 self.trUtf8(
                     """There are no files available/selected belonging"""

eric ide

mercurial