src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
206 206
207 self.logTree.clear() 207 self.logTree.clear()
208 self.__getLogEntries() 208 self.__getLogEntries()
209 209
210 @pyqtSlot(int, QProcess.ExitStatus) 210 @pyqtSlot(int, QProcess.ExitStatus)
211 def __procFinished(self, exitCode, exitStatus): 211 def __procFinished(self, _exitCode, _exitStatus):
212 """ 212 """
213 Private slot connected to the finished signal. 213 Private slot connected to the finished signal.
214 214
215 @param exitCode exit code of the process 215 @param _exitCode exit code of the process (unused)
216 @type int 216 @type int
217 @param exitStatus exit status of the process 217 @param _exitStatus exit status of the process (unused)
218 @type QProcess.ExitStatus 218 @type QProcess.ExitStatus
219 """ 219 """
220 self.__processBuffer() 220 self.__processBuffer()
221 self.__finish() 221 self.__finish()
222 222

eric ide

mercurial