--- 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)