(self, command)
| 203 | raise Exception(f'Timeout waiting for {name}={value}; current value: {v}. timeout={timeout}') |
| 204 | |
| 205 | def run_command(self, command): |
| 206 | self.fg.telnet._putcmd(command) |
| 207 | ret = self.fg.telnet._getresp() |
| 208 | log(f'command={command!r} ret: {ret}') |
| 209 | return ret |
| 210 | |
| 211 | def close(self): |
| 212 | assert self.child |