diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -24,67 +24,64 @@ """ Class implementing a dialog to add a sub-repository. """ + def __init__(self, projectPath, parent=None): """ Constructor - + @param projectPath project directory name (string) @param parent reference to the parent widget (QWidget) """ super().__init__(parent) self.setupUi(self) - + self.pathPicker.setMode(EricPathPickerModes.DIRECTORY_MODE) self.pathPicker.setDefaultDirectory(projectPath) - + self.__ok = self.buttonBox.button(QDialogButtonBox.StandardButton.Ok) self.__ok.setEnabled(False) - + self.__projectPath = Utilities.toNativeSeparators(projectPath) - + self.typeCombo.addItem("Mercurial", "hg") self.typeCombo.addItem("GIT", "git") self.typeCombo.addItem("Subversion", "svn") - + msh = self.minimumSizeHint() self.resize(max(self.width(), msh.width()), msh.height()) - + def __updateOk(self): """ Private slot to update the state of the OK button. """ path = self.pathPicker.text() url = self.urlEdit.text() - - self.__ok.setEnabled( - path != "" and - not os.path.isabs(path) and - url != "" - ) - + + self.__ok.setEnabled(path != "" and not os.path.isabs(path) and url != "") + @pyqtSlot(str) def on_pathPicker_textChanged(self, p0): """ Private slot to handle the update of the path. - + @param p0 text of the path edit (string) """ self.__updateOk() - + @pyqtSlot(str) def on_urlEdit_textChanged(self, p0): """ Private slot to handle the update of the URL. - + @param p0 text of the URL edit (string) """ self.__updateOk() - + @pyqtSlot(str) def on_pathPicker_pathSelected(self, path): """ Private slot handling the selection of a subrepository path. - + @param path path of the subrepository @type str """ @@ -95,14 +92,16 @@ EricMessageBox.critical( self, self.tr("Add Sub-repository"), - self.tr("""The sub-repository path must be inside""" - """ the project.""")) + self.tr( + """The sub-repository path must be inside""" """ the project.""" + ), + ) self.pathPicker.setText("") - + def getData(self): """ Public method to get the data. - + @return tuple containing the relative path within the project, the sub-repository type and the sub-repository URL (string, string, string) @@ -110,5 +109,5 @@ return ( self.pathPicker.text(), self.typeCombo.itemData(self.typeCombo.currentIndex()), - self.urlEdit.text() + self.urlEdit.text(), )