Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py

changeset 3009
bf5ae5d7477d
parent 2302
f29e9405c851
child 3024
17c01303a239
child 3057
10516539f238
diff -r 7848489bcb92 -r bf5ae5d7477d Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py
--- a/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py	Sat Oct 12 15:01:28 2013 +0200
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py	Sat Oct 12 17:31:40 2013 +0200
@@ -12,7 +12,8 @@
 import pysvn
 
 from PyQt4.QtCore import QMutexLocker, Qt
-from PyQt4.QtGui import QHeaderView, QDialog, QDialogButtonBox, QFont, QTreeWidgetItem
+from PyQt4.QtGui import QHeaderView, QDialog, QDialogButtonBox, QFont, \
+    QTreeWidgetItem
 
 from .SvnDialogMixin import SvnDialogMixin
 from .Ui_SvnBlameDialog import Ui_SvnBlameDialog
@@ -74,8 +75,9 @@
             annotations = self.client.annotate(fname)
             locker.unlock()
             for annotation in annotations:
-                self.__generateItem(annotation["revision"].number,
-                    annotation["author"], annotation["number"] + 1, annotation["line"])
+                self.__generateItem(
+                    annotation["revision"].number, annotation["author"],
+                    annotation["number"] + 1, annotation["line"])
         except pysvn.ClientError as e:
             locker.unlock()
             self.__showError(e.args[0] + '\n')
@@ -84,7 +86,8 @@
         
     def __finish(self):
         """
-        Private slot called when the process finished or the user pressed the button.
+        Private slot called when the process finished or the user pressed the
+        button.
         """
         self.buttonBox.button(QDialogButtonBox.Close).setEnabled(True)
         self.buttonBox.button(QDialogButtonBox.Cancel).setEnabled(False)

eric ide

mercurial