--- a/Plugins/VcsPlugins/vcsMercurial/TransplantExtension/TransplantDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/TransplantExtension/TransplantDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -23,7 +23,8 @@ """ Constructor - @param multiRevsAllowed flag indicating, if multi revs are allowed (boolean) + @param multiRevsAllowed flag indicating, if multi revs are allowed + (boolean) @param parent reference to the parent object (QObject) """ super(RevisionsValidator, self).__init__(parent) @@ -95,7 +96,8 @@ Private slot to update the state of the OK button. """ self.buttonBox.button(QDialogButtonBox.Ok).setEnabled( - self.revisionsEdit.toPlainText() != "" or self.allCheckBox.isChecked()) + self.revisionsEdit.toPlainText() != "" or + self.allCheckBox.isChecked()) @pyqtSlot() def on_revisionsEdit_textChanged(self):