(self, done, buf)
| 70 | self._tmpdir = _get_tmp() |
| 71 | |
| 72 | def _update(self, done, buf): |
| 73 | if not self._tmpdir: |
| 74 | output = "Unable to find executable tmp directory, check noexec on /tmp" |
| 75 | else: |
| 76 | output = _run_shell_command(self._code, self._tmpdir) |
| 77 | self.overwrite(buf, output) |
| 78 | self._parent._del_child(self) |
| 79 | return True |
nothing calls this directly
no test coverage detected