(self, line)
| 140 | return True |
| 141 | |
| 142 | def subprocc_log(self, line): |
| 143 | logger.info(line) |
| 144 | if line.find("Can not open the file as archive"): |
| 145 | raise TransferModuleError("解压失败,压缩文件损坏或格式不对") |
| 146 | |
| 147 | def compress_subprocc_log(self, line): |
| 148 | logger.info(line) |
nothing calls this directly
no test coverage detected