Plugins/VcsPlugins/vcsSubversion/subversion.py

changeset 3037
a417a0670a36
parent 3034
7ce719013078
child 3044
a6cee59c80a4
diff -r 30c81c9e88b8 -r a417a0670a36 Plugins/VcsPlugins/vcsSubversion/subversion.py
--- a/Plugins/VcsPlugins/vcsSubversion/subversion.py	Sat Oct 19 15:15:50 2013 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/subversion.py	Sat Oct 19 16:14:07 2013 +0200
@@ -478,7 +478,7 @@
                     project = e5App().getObject("Project")
                     if nam == project.getProjectPath():
                         ok &= project.checkAllScriptsDirty(
-                                reportSyntaxErrors=True) and \
+                            reportSyntaxErrors=True) and \
                             project.checkDirty()
                         continue
                 elif os.path.isfile(nam):
@@ -651,7 +651,7 @@
                         if os.path.splitdrive(repodir)[1] == os.sep:
                             return  # oops, project is not version controlled
                     while os.path.normcase(d) != \
-                                os.path.normcase(repodir) and \
+                        os.path.normcase(repodir) and \
                             (d not in tree2 + tree) and \
                             (os.path.normcase(d) not in self.statusCache or
                              self.statusCache[os.path.normcase(d)] ==
@@ -716,7 +716,7 @@
                         if os.path.splitdrive(repodir)[1] == os.sep:
                             return  # oops, project is not version controlled
                     while os.path.normcase(d) != \
-                                os.path.normcase(repodir) and \
+                        os.path.normcase(repodir) and \
                             (d not in tree) and \
                             (os.path.normcase(d) not in self.statusCache or
                              self.statusCache[os.path.normcase(d)] ==
@@ -741,7 +741,7 @@
                     if os.path.splitdrive(repodir)[1] == os.sep:
                         return  # oops, project is not version controlled
                 while os.path.normcase(dname) != \
-                            os.path.normcase(repodir) and \
+                    os.path.normcase(repodir) and \
                         (os.path.normcase(dname) not in self.statusCache or
                          self.statusCache[os.path.normcase(dname)] ==
                             self.canBeAdded):
@@ -1597,14 +1597,13 @@
             """<tr><td><b>Comitted time</b></td><td>{5}</td></tr>"""
             """<tr><td><b>Last author</b></td><td>{6}</td></tr>"""
             """</table>"""
-            )\
-            .format(self.versionStr,
-                    info['url'],
-                    info['revision'],
-                    info['committed-rev'],
-                    info['committed-date'],
-                    info['committed-time'],
-                    info['last-author'])
+        ).format(self.versionStr,
+                 info['url'],
+                 info['revision'],
+                 info['committed-rev'],
+                 info['committed-date'],
+                 info['committed-time'],
+                 info['last-author'])
     
     ###########################################################################
     ## Public Subversion specific methods are below.
@@ -2021,7 +2020,7 @@
                     self.trUtf8("Subversion Side-by-Side Difference"),
                     self.trUtf8(
                         """<p>The file <b>{0}</b> could not be read.</p>""")
-                        .format(name))
+                    .format(name))
                 return
         
         if self.sbsDiff is None:

eric ide

mercurial