(self)
| 199 | self.setObjectName("InstallPluginThread") |
| 200 | |
| 201 | def run(self): |
| 202 | try: |
| 203 | pluginArchive = ZipFile(GlobalMCSL2Variables.installingPluginArchiveDirectory, "r") |
| 204 | pluginArchive.extractall("./Plugins") |
| 205 | pluginArchive.close() |
| 206 | self.success.emit() |
| 207 | except Exception as e: |
| 208 | MCSL2Logger.error(exc=e) |
| 209 | self.failed.emit() |
no test coverage detected