예제 #1
0
파일: local.py 프로젝트: coder46/rcontrol
 def _on_finished(self):
     if not self.timed_out():
         self._set_exit_code(self._proc.wait())
     CommandTask._on_finished(self)
예제 #2
0
 def _on_finished(self):
     if not self.timed_out():
         self._set_exit_code(self._ssh_session.recv_exit_status())
     CommandTask._on_finished(self)
예제 #3
0
파일: ssh.py 프로젝트: coder46/rcontrol
 def _on_finished(self):
     if not self.timed_out():
         self._set_exit_code(self._ssh_session.recv_exit_status())
     CommandTask._on_finished(self)
예제 #4
0
 def _on_finished(self):
     if not self.timed_out():
         self._set_exit_code(self._proc.wait())
     CommandTask._on_finished(self)