200 "Ensure, that it is in the search path." |
200 "Ensure, that it is in the search path." |
201 ).format("svn"), |
201 ).format("svn"), |
202 ) |
202 ) |
203 |
203 |
204 @pyqtSlot(int, QProcess.ExitStatus) |
204 @pyqtSlot(int, QProcess.ExitStatus) |
205 def __procFinished(self, exitCode, exitStatus): |
205 def __procFinished(self, _exitCode, _exitStatus): |
206 """ |
206 """ |
207 Private slot connected to the finished signal. |
207 Private slot connected to the finished signal. |
208 |
208 |
209 @param exitCode exit code of the process |
209 @param _exitCode exit code of the process (unused) |
210 @type int |
210 @type int |
211 @param exitStatus exit status of the process |
211 @param _exitStatus exit status of the process (unused) |
212 @type QProcess.ExitStatus |
212 @type QProcess.ExitStatus |
213 """ |
213 """ |
214 self.inputGroup.setEnabled(False) |
214 self.inputGroup.setEnabled(False) |
215 self.inputGroup.hide() |
215 self.inputGroup.hide() |
216 self.refreshButton.setEnabled(True) |
216 self.refreshButton.setEnabled(True) |