(self, command)
| 173 | return None |
| 174 | |
| 175 | def exec_command(self, command): |
| 176 | logging.debug(f">> {command}") |
| 177 | p = Popen(command, shell=True, stdout=PIPE, stderr=PIPE, text=True) |
| 178 | output, err = p.communicate() |
| 179 | p.wait() |
| 180 | return output |
no test coverage detected