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

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
206 Private slot to refresh the status display. 206 Private slot to refresh the status display.
207 """ 207 """
208 self.start(self.__args, recursive=self.__recursive) 208 self.start(self.__args, recursive=self.__recursive)
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 if self.lastPath is None: 220 if self.lastPath is None:
221 self.__generateItem("", "None", "") 221 self.__generateItem("", "None", "")
222 222

eric ide

mercurial