(self, package)
| 240 | |
| 241 | @lock |
| 242 | def packageFinished(self, package): |
| 243 | for plugin in self.plugins: |
| 244 | if plugin.isActivated(): |
| 245 | if "packageFinished" in plugin.__threaded__: |
| 246 | self.startThread(plugin.packageFinished, package) |
| 247 | else: |
| 248 | plugin.packageFinished(package) |
| 249 | |
| 250 | self.dispatchEvent("packageFinished", package) |
| 251 | |
| 252 | @lock |
| 253 | def beforeReconnecting(self, ip): |
nothing calls this directly
no test coverage detected