src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 10922
36a90a94765c
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
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)

eric ide

mercurial