diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py --- a/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -14,7 +14,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 @@ -76,8 +77,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') @@ -86,7 +88,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)