--- a/Plugins/VcsPlugins/vcsMercurial/TransplantExtension/TransplantDialog.py Fri Oct 11 19:51:20 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/TransplantExtension/TransplantDialog.py Sat Oct 12 15:01:28 2013 +0200 @@ -21,7 +21,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().__init__(parent) @@ -93,7 +94,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):