diff -r 7848489bcb92 -r bf5ae5d7477d Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py --- a/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py Sat Oct 12 15:01:28 2013 +0200 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnRevisionSelectionDialog.py Sat Oct 12 17:31:40 2013 +0200 @@ -15,7 +15,8 @@ class SvnRevisionSelectionDialog(QDialog, Ui_SvnRevisionSelectionDialog): """ - Class implementing a dialog to enter the revisions for the svn diff command. + Class implementing a dialog to enter the revisions for the svn diff + command. """ def __init__(self, parent=None): """ @@ -63,7 +64,8 @@ return numberSpinBox.value() elif dateButton.isChecked(): return "{{{0}}}".format( - QDateTime(dateEdit.date(), timeEdit.time()).toString(Qt.ISODate)) + QDateTime(dateEdit.date(), timeEdit.time()) + .toString(Qt.ISODate)) elif headButton.isChecked(): return "HEAD" elif workingButton.isChecked():