Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py

changeset 3009
bf5ae5d7477d
parent 2302
f29e9405c851
child 3020
542e97d4ecb3
child 3057
10516539f238
--- a/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py	Sat Oct 12 15:01:28 2013 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py	Sat Oct 12 17:31:40 2013 +0200
@@ -10,8 +10,8 @@
 import pysvn
 
 from PyQt4.QtCore import QMutexLocker, Qt, pyqtSlot
-from PyQt4.QtGui import QCursor, QHeaderView, QDialog, QApplication, QDialogButtonBox, \
-    QTreeWidgetItem
+from PyQt4.QtGui import QCursor, QHeaderView, QDialog, QApplication, \
+    QDialogButtonBox, QTreeWidgetItem
 
 from E5Gui import E5MessageBox
 
@@ -88,7 +88,8 @@
         """
         Private method to generate a tree item in the repository tree.
         
-        @param parent parent of the item to be created (QTreeWidget or QTreeWidgetItem)
+        @param parent parent of the item to be created (QTreeWidget or
+            QTreeWidgetItem)
         @param repopath path of the item (string)
         @param revision revision info (string or pysvn.opt_revision_kind)
         @param author author info (string)
@@ -163,7 +164,8 @@
                         continue
                     if firstTime:
                         if dirent["repos_path"] != "/":
-                            repoUrl = dirent["path"].replace(dirent["repos_path"], "")
+                            repoUrl = dirent["path"].replace(
+                                dirent["repos_path"], "")
                         else:
                             repoUrl = dirent["path"]
                         if repoUrl != url:
@@ -173,9 +175,11 @@
                             itm.setExpanded(True)
                             parent = itm
                             urlPart = repoUrl
-                            for element in dirent["repos_path"].split("/")[:-1]:
+                            for element in \
+                                    dirent["repos_path"].split("/")[:-1]:
                                 if element:
-                                    urlPart = "{0}/{1}".format(urlPart, element)
+                                    urlPart = "{0}/{1}".format(urlPart,
+                                                               element)
                                     itm = self.__generateItem(parent, element,
                                         "", "", 0, "", pysvn.node_kind.dir,
                                         urlPart)

eric ide

mercurial